@uniweb/content-reader 1.0.2 → 1.0.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/package.json +1 -1
package/README.md
CHANGED
|
@@ -139,7 +139,7 @@ Full support for aligned columns:
|
|
|
139
139
|
## Installation
|
|
140
140
|
|
|
141
141
|
```bash
|
|
142
|
-
npm install @
|
|
142
|
+
npm install @uniweb/content-reader
|
|
143
143
|
```
|
|
144
144
|
|
|
145
145
|
## Usage
|
|
@@ -147,7 +147,7 @@ npm install @uniwebcms/content-reader
|
|
|
147
147
|
Basic usage:
|
|
148
148
|
|
|
149
149
|
```javascript
|
|
150
|
-
const { markdownToProseMirror } = require("@
|
|
150
|
+
const { markdownToProseMirror } = require("@uniweb/content-reader");
|
|
151
151
|
|
|
152
152
|
const markdown = `
|
|
153
153
|
# Hello World
|
|
@@ -168,7 +168,7 @@ The library is designed to work seamlessly with TipTap editors:
|
|
|
168
168
|
|
|
169
169
|
```javascript
|
|
170
170
|
import { Editor } from "@tiptap/core";
|
|
171
|
-
import { markdownToProseMirror } from "@
|
|
171
|
+
import { markdownToProseMirror } from "@uniweb/content-reader";
|
|
172
172
|
|
|
173
173
|
const editor = new Editor({
|
|
174
174
|
content: markdownToProseMirror(markdown),
|
|
@@ -243,7 +243,7 @@ We welcome contributions! Please see our contributing guidelines for details.
|
|
|
243
243
|
1. Clone the repository:
|
|
244
244
|
|
|
245
245
|
```bash
|
|
246
|
-
git clone https://github.com/
|
|
246
|
+
git clone https://github.com/uniweb/content-reader.git
|
|
247
247
|
```
|
|
248
248
|
|
|
249
249
|
2. Install dependencies:
|