Replies: 1 comment
-
|
What does it mean to convert markdown into a flowchart? Markdown is for text documents. Flowcharts are charts. They are very different things. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How can I convert markdown into a flowchart
const file = await unified()
.use(remarkParse)
.use(remarkGfm)
.use(remarkRehype)
.use(rehypePrettyCode, {
transformers: [
transformerCopyButton({
visibility: 'always',
feedbackDuration: 3_000,
}),
],
})
.use(rehypeStringify)
.process(markdown);
Beta Was this translation helpful? Give feedback.
All reactions