PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
20 lines
388 B
TypeScript
20 lines
388 B
TypeScript
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'
|
|
}
|
|
}
|