astro-ghostcms/.pnpm-store/v3/files/ab/90fc6f7e4895fd4a67b03c32367...

20 lines
388 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export {
gfmStrikethroughFromMarkdown,
gfmStrikethroughToMarkdown
} from './lib/index.js'
// Add custom data tracked to turn a syntax tree into markdown.
declare module 'mdast-util-to-markdown' {
interface ConstructNameMap {
/**
* Whole strikethrough.
*
* ```markdown
* > | ~~a~~
* ^^^^^
* ```
*/
strikethrough: 'strikethrough'
}
}