md-annotator 0.5.1 → 0.5.3
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 +4 -4
- package/client/dist/index.html +256 -254
- package/client/src/utils/export.js +244 -0
- package/client/src/utils/parser.js +245 -0
- package/client/src/utils/storage.js +44 -0
- package/client/src/utils/textStats.js +8 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -60,11 +60,11 @@ For local development, see the [Development](#development) section.
|
|
|
60
60
|
### 🔄 Update
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
# Update the
|
|
64
|
-
|
|
63
|
+
# Update the CLI
|
|
64
|
+
npm update -g md-annotator
|
|
65
65
|
|
|
66
|
-
#
|
|
67
|
-
claude plugin update annotate@md-annotator
|
|
66
|
+
# Update the marketplace cache and plugin
|
|
67
|
+
claude plugin marketplace update md-annotator && claude plugin update annotate@md-annotator
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
### 🚀 Usage
|