mdmath2html

0.3.1 • Public • Published

Markdown Math to HTML file.

Convert Markdown files with math annotations to HTML files.

Global installation

npm install -g mdmath2html
mdtohtml file.md

Options:

Usage mdtohtml [options] <file ...>

  • -t, --title Title of HTML file. default: Markdown file name.
  • -o, --outDir Directory where to save the files. default: Same director of the markdown file.
  • -f, --force Ignore file format.
  • -l, --level Level for table of contents.
  • -s, --silence Does not display info in console.
  • --offLine CSS/JS files linked to local user, by default using CDN.

Installation for your project.

npm install mdmath2html --save
var fs = require("fs");
var mdmath2html = require("mdmath2html");
 
var mdFile = fs.readFileSync("./latex.md");
 
var htmlFile = mdmath2html.render(
  mdFile.toString(),   // markdown
  "Markdown to Html.", // title
  { offLine: true }    // options
);
 
fs.writeFile("mk2html.html", htmlFile, "utf8", function(err) {
  if (err) throw err;
  console.log("The file has been saved!");
});

Dependencies

Package Sidebar

Install

npm i mdmath2html

Weekly Downloads

1

Version

0.3.1

License

MIT

Unpacked Size

14 kB

Total Files

8

Last publish

Collaborators

  • matiasmarani