An open API service indexing awesome lists of open source software.

https://github.com/diversen/markdown-it-embed-mathjax-highlight

A markdown-it lib with support for embedded MP4, code highlight, and MathJax.
https://github.com/diversen/markdown-it-embed-mathjax-highlight

Last synced: over 1 year ago
JSON representation

A markdown-it lib with support for embedded MP4, code highlight, and MathJax.

Awesome Lists containing this project

README

          

# markdown-it-embed-mathjax-highlight.js

Markdown-it with mathjax, highlightjs, and html5 video embed.

Install:

// Install and save
npm install markdown-it-embed-mathjax-highlight --save

Usage:

// include the lib.
md = require('markdown-it-embed-mathjax-highlight');

// Change options as you like (as in markdown-it), e.g.:
md.options.html = true;

// Render a string
var str = "

test

# her er en test ![test](./test/test.mp4) $1 *2* 3$";
console.log(md.render(str));