ByteMD plugin to support GFM (autolink literals, strikethrough, tables, tasklists)
import { Editor } from 'bytemd' import gfm from '@bytemd/plugin-gfm' new Editor({ target: document.body, props: { plugins: [ gfm(), // ... other plugins ], }, })
MIT