Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/codeassign/markjax
- Owner: codeassign
- License: apache-2.0
- Created: 2016-08-14T23:01:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-22T22:48:07.000Z (almost 4 years ago)
- Last Synced: 2024-09-29T14:42:43.547Z (3 months ago)
- Topics: javascript, katex, latex, markdown, mathjax, parser
- Language: JavaScript
- Homepage: http://markjax.codeassign.com/
- Size: 514 KB
- Stars: 9
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).