This repository has been archived by the owner on Nov 3, 2020. It is now read-only.
forked from bartv2/quill-delta-markdown
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First version of algo for indented lists
- Loading branch information
1 parent
6ae64e2
commit 0fedb0a
Showing
14 changed files
with
1,129 additions
and
1,106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
module.exports = { | ||
fromDelta: require('./src/fromDelta'), | ||
toDelta: require('./src/toDelta'), | ||
const fromDelta = require("./src/fromDelta"); | ||
|
||
module.exports = toMdAST; | ||
|
||
function toMdAST() { | ||
this.Parser = function(file) { | ||
return fromDelta({})(JSON.parse(file)); | ||
}; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.