Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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


```