- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
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'
|
|
}
|
|
}
|