(limitedMarkdown: boolean)
| 67 | }; |
| 68 | |
| 69 | export function remarkPlugins(limitedMarkdown: boolean) { |
| 70 | const plugins: PluggableList = [remarkGfm]; |
| 71 | |
| 72 | if (limitedMarkdown) { |
| 73 | plugins.unshift(limitedMarkdownPlugin); |
| 74 | } |
| 75 | |
| 76 | return plugins; |
| 77 | } |
| 78 | |
| 79 | export function rehypePlugins(html: boolean) { |
| 80 | const plugins: PluggableList = []; |