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
// Then import: import 'remark-notes-plugin/styles.css'
80
+
81
+
// Both options
82
+
unified().use(remarkNotes, {
83
+
classPrefix: 'custom',
84
+
injectStyles: false
85
+
})
86
+
```
87
+
57
88
## 📝 Note Types
58
89
59
90
The plugin supports five distinct types of notes, each with its own unique style:
@@ -90,34 +121,75 @@ The plugin supports five distinct types of notes, each with its own unique style
90
121
91
122
## 🎨 Styling
92
123
93
-
Default styles are loaded automatically when you use the plugin. You can also modify the styles since the plugin uses a modular class structure that makes it easy to customize the appearance:
124
+
By default, styles are automatically injected into your document. You can customize this behavior:
125
+
126
+
### Automatic Style Injection (Default)
127
+
128
+
Styles are included automatically when you use the plugin with default settings:
0 commit comments