Skip to content

Commit d442bd1

Browse files
committed
Initial Commit
0 parents  commit d442bd1

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# markdown-it-html-entities
2+
3+
Currently [markdown-it](https://github.com/markdown-it/markdown-it) follows
4+
[CommonMark specs](https://spec.commonmark.org) which requires HTML Entity
5+
[replacement with Unicode
6+
Character](https://spec.commonmark.org/0.28/#entity-references), though in the
7+
Browsers [HTML
8+
entities](https://developer.mozilla.org/en-US/docs/Glossary/Entity) are
9+
displayed using relevant characters accordingly out of the box.
10+
11+
This plugin is for disabling the HTML Entities to Unicode convertion for
12+
markdown-it.

package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "markdown-it-html-entities",
3+
"version": "1.0.0",
4+
"description": "Disable HTML Entity to Unicode conversion in Markdown-it",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/Manvel/markdown-it-html-entities.git"
12+
},
13+
"keywords": [
14+
"markdown",
15+
"markdown-it",
16+
"markdown-it-plugin",
17+
"commonmark",
18+
"entity",
19+
"html-entity"
20+
],
21+
"author": "Manvel Saroyan",
22+
"license": "MIT",
23+
"bugs": {
24+
"url": "https://github.com/Manvel/markdown-it-html-entities/issues"
25+
},
26+
"homepage": "https://github.com/Manvel/markdown-it-html-entities#readme"
27+
}

0 commit comments

Comments
 (0)