dokudocs 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ A personal documentation system that stores docs as plain Markdown files and pro
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
11
11
|
- **Markdown-first** — all documents are standard `.md` files on disk, editable with any tool
|
|
12
|
-
- **WYSIWYG editor** —
|
|
12
|
+
- **WYSIWYG editor** — block editor (BlockNote) with no raw Markdown editing
|
|
13
13
|
- **Hierarchical folders** — organize docs in nested folders with a collapsible sidebar tree
|
|
14
14
|
- **Full-text search** — search bar at the top of the sidebar with highlighted snippets
|
|
15
15
|
- **Auto-save** — changes save automatically (1-second debounce)
|
|
@@ -107,14 +107,19 @@ Documents support optional YAML frontmatter for metadata:
|
|
|
107
107
|
```markdown
|
|
108
108
|
---
|
|
109
109
|
ordering: 1
|
|
110
|
+
icon: 🚀
|
|
110
111
|
---
|
|
111
112
|
# My Document
|
|
112
113
|
|
|
113
114
|
Content here...
|
|
114
115
|
```
|
|
115
116
|
|
|
116
|
-
|
|
117
|
-
|
|
117
|
+
| Field | Type | Description |
|
|
118
|
+
|-------|------|-------------|
|
|
119
|
+
| ordering | number | Controls position in the sidebar (lower values first, unordered items last) |
|
|
120
|
+
| icon | string | An emoji shown instead of the default file/folder icon in the sidebar. Can be set via the emoji picker in the toolbar or directly in the file. |
|
|
121
|
+
|
|
122
|
+
Frontmatter is completely hidden in the editor UI and preserved on save.
|
|
118
123
|
|
|
119
124
|
## Tech Stack
|
|
120
125
|
|