Package Exports
- remark-plantuml-link
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (remark-plantuml-link) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
remark-plantuml-link
Generate a plantuml image link from text
Install
npm install --save-dev remark-plantuml-linkUsage
const remark = require('remark');
const plantumlLink = require('remark-plantuml-link');
const input = '<!-- ```plantuml\n(A)\n``` -->';
const output = remark().use(plantumlLink).processSync(input).toString();Input:
<!-- ```plantuml
(A)
``` -->Output:
<!-- ```plantuml
(A)
``` -->
