🚧 Added support for markdown preview table

This commit is contained in:
2025-12-04 00:47:51 +08:00
parent 91f4f4afac
commit 71ca541f78
21 changed files with 3120 additions and 1263 deletions

View File

@@ -15,6 +15,8 @@ import { highlight } from './plugins/highlight';
import { insert } from './plugins/insert';
import { math } from './plugins/math';
import { footnote } from './plugins/footnote';
import table from "./plugins/table";
import {htmlBlockExtension} from "./plugins/html";
/**
* markdown extensions
@@ -36,6 +38,8 @@ export const markdownExtensions: Extension = [
insert(),
math(),
footnote(),
table(),
htmlBlockExtension
];
export default markdownExtensions;