tiny-markdown-editor 0.2.4 → 0.2.6
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 +2 -2
- package/dist/tiny-mde.js +73 -45
- package/dist/tiny-mde.min.js +1 -1
- package/dist/tiny-mde.tiny.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -360,10 +360,10 @@ npm install
|
|
|
360
360
|
|
|
361
361
|
# You may need to run npm install --force
|
|
362
362
|
|
|
363
|
-
npm run
|
|
363
|
+
npm run build
|
|
364
364
|
```
|
|
365
365
|
|
|
366
|
-
The latter command generates the `dist`
|
|
366
|
+
The latter command generates the `dist` directory. You will find the following files there:
|
|
367
367
|
|
|
368
368
|
- `dist/tiny-mde.css` and `dist/tiny-mde.min.css`: CSS files to style the editor. These can be edited at will to make the editor look like you want to. `dist/tiny-mde.min.css` has the same content as `dist/tiny-mde.css`, it's just minified. You will only need to use one of the files on your page. If you want to edit the CSS file, it's easier to edit `dist/tiny-mde.css` and then minify the edited version.
|
|
369
369
|
- `dist/tiny-mde.js`: Debug version of the editor. The JS file is not minified and contains a sourcemap. It is not recommended to use this in production settings, since the file is large.
|