Open Regenhardt opened 3 days ago
@Regenhardt If you provide the configuration file config/conf.json
, it can include the following settings:
{
"document": {
"title": "markdown-to-html-cli",
"description": "Command line tool generates markdown as HTML.",
"style": "body { color: red; }",
"meta": [
{ "description": "Command line tool generates markdown as HTML." },
{ "keywords": "store, localStorage, lightweight, JavaScript" }
]
}
}
If the configuration is added in "package.json"
, it would look like this:
{
"markdown-to-html": {
"document": {
"title": "markdown-to-html-cli",
"description": "Command line tool generates markdown as html.",
"style": "body { color: red; }",
"meta": [
{ "description": "Command line tool generates markdown as html." },
{ "keywords": "store,localStorage,lightweight,JavaScript" }
]
}
}
@Regenhardt upgrade v4.1.0
Is it possible to add arbitrary
<head>
entries, like a canonical URL? Couldn't find a parameter for it.