GitHub markdown and prose style.
Learn more about presets in unified's docs.
NOTE: Feel free to open an issue if something isn't working right.
npm:
npm install remark-cli remark-preset-github --save
Now add the following to your package.json
:
"scripts": {
"build-md": "remark ."
"test": "npm run build-md && ..."
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
From now on, npm test
also checks markdown.
npm test
- Adds a license section
- Adds a contributors section
- Extends
remark-preset-lint-recommended
, and adds a strict code-style (seeindex.js
) - Markdown is compiled with asterisk list-item bullets (
*
), and fenced code blocks (note: setoutput: true
in your config to benefit from this) - How remark compiles can be configured inline with comments
Table of Contents
headers are kept up to date, with a depth of3
(ifoutput: true
)- GH references, like mentions or issue references, are
linked (if
output: true
)
See retext-preset-github
for more info.
- English parsing
- Two spaces between sentences
- Checks "indefinite articles": "a" or "an"
- Checks quotes and apostrophes (
“”
>""
) - Checks accidental repeated words
- Checks diacritics
- Checks redundant acronyms
- Checks incorrectly placed apostrophes in contractions
Name | website |
---|---|
Nick Baugh | https://niftylettuce.com |
MIT © Titus Wormer