We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e9355a commit d871c05Copy full SHA for d871c05
README.md
@@ -39,6 +39,7 @@ An example (...coming soon)
39
- `code` (`$VALUE`)
40
- color 🤷 (`<span notion-color="$COLOR">$VALUE</span>`)
41
- Access to raw data returned by Notion API
42
+- Support for `markdown-remark` and `mdx`
43
44
## Install
45
@@ -123,6 +124,23 @@ query {
123
124
}
125
```
126
127
+Alternatively, you can use MarkdownRemark or MDX directly:
128
+
129
+```graphql
130
+query {
131
+ allMarkdownRemark {
132
+ edges {
133
+ node {
134
+ frontmatter {
135
+ title
136
+ }
137
+ html
138
139
140
141
+}
142
+```
143
144
## Node properties
145
146
### `id`
0 commit comments