Skip to content

Commit

Permalink
0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
inokawa committed Oct 16, 2022
1 parent c305c40 commit 44476ec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remark-slate-transformer",
"version": "0.7.1",
"version": "0.7.2",
"description": "remark plugin to transform remark syntax tree (mdast) to Slate document tree, and vice versa. Made for WYSIWYG markdown editor.",
"main": "lib/index.js",
"module": "lib/index.mjs",
Expand Down
8 changes: 4 additions & 4 deletions src/models/mdast.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
// ref: https://github.com/syntax-tree/mdast

import type { Literal } from 'mdast'
import type { Literal } from "mdast";

export * from 'mdast'
export * from 'mdast-util-math/complex-types'
export * from "mdast";
export * from "mdast-util-math/complex-types";

export interface TOML extends Literal {
type: "toml";
}

declare module "mdast" {
interface FrontmatterContentMap {
toml: TOML
toml: TOML;
}
}

0 comments on commit 44476ec

Please sign in to comment.