Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/codeassign/markjax

Javascript parser for converting Markdown with LaTeX to HTML
https://github.com/codeassign/markjax

javascript katex latex markdown mathjax parser

Last synced: 3 months ago
JSON representation

Javascript parser for converting Markdown with LaTeX to HTML

Awesome Lists containing this project

README

        

# MarkJax
Markdown with LaTeX parser in Javascript

# Usage

Load MarkJax into a web page by including its main JavaScript file into the page.
Place the following line in the `` section of your document:
```html

```

Now you can write simple HTML which uses `markjax`:
```html





markjax("# Hello\n$\LaTeX$", document.getElementById("output"));

```

Same HTML is available [here](http://codepen.io/anon/pen/XNqRLV?editors=1000).