You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NOTE: In the above, we are using `npx` to use the latest `docu-notion`. A more conservative approach would be to `npm i cross-var docu-notion` and then create a script in your package.json like this:
56
+
NOTE: In the above, we are using `npx` to use the latest `docu-notion`. A more conservative approach would be to `npm i cross-var @sillsdev/docu-notion` and then create a script in your package.json like this:
57
57
58
58
```
59
59
"scripts": {
@@ -133,3 +133,16 @@ Options:
133
133
# Plugins
134
134
135
135
If your project needs some processing that docu-notion doesn't already provide, you can provide a plugin that does it. See the [plugin readme](src/plugins/README.md).
136
+
137
+
# Callouts ➜ Admonitions
138
+
139
+
To map Notion callouts to Docusaurus admonitions, ensure the icon is for the type you want.
140
+
141
+
- ℹ️ ➜ note
142
+
- 📝➜ note
143
+
- 💡➜ tip
144
+
- ❗➜ info
145
+
- ⚠️➜ caution
146
+
- 🔥➜ danger
147
+
148
+
The default admonition type, if no matching icon is found, is "note".
0 commit comments