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

https://github.com/unlight/remark-plantuml-link

Generate a plantuml image link from text
https://github.com/unlight/remark-plantuml-link

diagram markdown plantuml remark remark-plugin text-to-image uml

Last synced: 4 months ago
JSON representation

Generate a plantuml image link from text

Awesome Lists containing this project

README

          

# remark-plantuml-link

Generate a plantuml image link from text

## Install

```sh
npm install --save-dev remark-plantuml-link
```

## Usage

````javascript
const remark = require('remark');
const plantumlLink = require('remark-plantuml-link');
const input = '';
const output = remark().use(plantumlLink).processSync(input).toString();
````

Input:

Output:

![](http://www.plantuml.com/plantuml/png/qt3K1000)

## Similar Projects

- https://github.com/BrekiTomasson/remark-plantuml
- https://github.com/webgears/remarkable-plantuml
- https://github.com/akebifiky/remark-simple-plantuml

## License

[MIT](LICENSE)