Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myriad-dreamin/marktex
latex style extension for markdown
https://github.com/myriad-dreamin/marktex
Last synced: about 1 month ago
JSON representation
latex style extension for markdown
- Host: GitHub
- URL: https://github.com/myriad-dreamin/marktex
- Owner: Myriad-Dreamin
- License: mit
- Created: 2020-03-11T03:35:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-14T02:53:08.000Z (over 2 years ago)
- Last Synced: 2023-03-04T11:23:08.776Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 612 KB
- Stars: 5
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MarkTeX
LaTeX style extension for markdown
## Installation
Using npm:
```bash
npm i marktex.js
```In Node.js:
```typescript
// es style
import myriad from 'marktex.js';
// or
import {myriad} from 'marktex.js';// commonJs style
var {myriad} = require("marktex.js")
// or
var myriad = require("marktex.js").default
```test it:
```typescript
console.log(myriad.newRenderDriver().renderString('## hello marktex.js'));
``````html
hello marktex.js
```