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
- Host: GitHub
- URL: https://github.com/unlight/remark-plantuml-link
- Owner: unlight
- License: mit
- Created: 2019-01-27T20:40:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-04T08:24:10.000Z (over 5 years ago)
- Last Synced: 2025-08-09T14:59:49.842Z (10 months ago)
- Topics: diagram, markdown, plantuml, remark, remark-plugin, text-to-image, uml
- Language: TypeScript
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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:

## Similar Projects
- https://github.com/BrekiTomasson/remark-plantuml
- https://github.com/webgears/remarkable-plantuml
- https://github.com/akebifiky/remark-simple-plantuml
## License
[MIT](LICENSE)