turndown-bin
v1.0.3
Published
CLI tool for converting HTML to Markdown
Downloads
10
Maintainers
Readme
turndown-bin
Simple CLI wrapper using turndown
to transform html
into markdown
Turndown can be found on https://github.com/mixmark-io/turndown
Install
npm install -g turndown-bin
Usage
Default options:
turndown-bin --in tests/example.html --out tests/markdown.md
From a URL:
turndown-bin --in https://github.com --out tests/markdown.md
You may add a JSON config file for settings special options.
Information about the options can be found on: https://github.com/mixmark-io/turndown/tree/master#options
This is the default options:
{
"headingStyle": "setext",
"hr": "* * *",
"bulletListMarker": "*",
"codeBlockStyle": "indented",
"fence": "```",
"emDelimiter": "_",
"strongDelimiter": "**",
"linkStyle": "inlined",
"linkReferenceStyle": "full",
"preformattedCode": false
}
Usage with options:
turndown-bin --in tests/example.html --out tests/markdown.md --config config.json
License
MIT