Skip to content

Commit 44476ec

Browse files
committed
0.7.2
1 parent c305c40 commit 44476ec

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remark-slate-transformer",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "remark plugin to transform remark syntax tree (mdast) to Slate document tree, and vice versa. Made for WYSIWYG markdown editor.",
55
"main": "lib/index.js",
66
"module": "lib/index.mjs",

src/models/mdast.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
// ref: https://github.com/syntax-tree/mdast
22

3-
import type { Literal } from 'mdast'
3+
import type { Literal } from "mdast";
44

5-
export * from 'mdast'
6-
export * from 'mdast-util-math/complex-types'
5+
export * from "mdast";
6+
export * from "mdast-util-math/complex-types";
77

88
export interface TOML extends Literal {
99
type: "toml";
1010
}
1111

1212
declare module "mdast" {
1313
interface FrontmatterContentMap {
14-
toml: TOML
14+
toml: TOML;
1515
}
1616
}

0 commit comments

Comments
 (0)