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

https://github.com/markedjs/marked-bidi

Bidirectional text support for marked
https://github.com/markedjs/marked-bidi

Last synced: 9 months ago
JSON representation

Bidirectional text support for marked

Awesome Lists containing this project

README

          

# marked-bidi

Add Bidirectional text support to the HTML

# Usage

```js
import {marked} from "marked";
import markedBidi from "marked-bidi";

// or UMD script
//
//

marked.use(markedBidi());

marked("راست left");
//

راست left


```