Generate a static website from your mardown documentation.
npm install -g markassin
markassin <source> <target>
-h, --help
output usage information-V, --version
output the version number-t --template
generate html with a custom template-f --force
force generate (erase target dir if exists)
markassin <source> <target>
Generate website from markdown source
Generator use Github markdown stylesheet to render html.
To generate custom html, markassin accept input template with --template
t
param.
module.exports = content => `<!DOCTYPE html>
<html>
<head>
head stuff here
</head>
<body class="markdown-body">
${content} // markdown transformed is injected here
</body>
</html>`;
`