Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/editors/slate/markdown-to-slate/index.ts
1697 views
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
export * from "./types";
7
8
// The import order here might matters **A LOT**. Be careful!
9
import "./handle-anchor-tags";
10
import "./handle-details-tags";
11
import "./handle-marks";
12
import "./handle-close";
13
import "./handle-open";
14
import "./handle-children";
15
import "./handle-no-children";
16
17
export { markdown_to_slate } from "./parse";
18
19