Closed
Description
I encounter an issue when trying to use only command line to execute remark
. This is my .remarkrc
{
"output": true,
"plugins": {
"lint": {
"no-shell-dollars": false
},
"github": true,
"comment-config": true,
"toc": true,
"validate-links": true,
"html": true
},
"settings": {
"commonmark": true,
"bullet": "*"
}
}
I then execute
remark history.md --output history.html
This does not seem to work. Is remark-html
intended to be used in conjunction with .remarkrc
or do I have to do this programmatically.
Thanks.