Updated markdown utils to use underscore instead of dash

• Updated:
- markdown utils to use underscore instead of dash
This commit is contained in:
mgabdev
2020-08-12 17:53:23 -05:00
parent a72ea2b525
commit adf4c49c82
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
// https://raw.githubusercontent.com/Rosey/markdown-draft-js/main/src/draft-to-markdown.js
// https://raw.githubusercontent.com/Rosey/markdown-draft-js/main/src/draft_to_markdown.js
const TRAILING_WHITESPACE = /[ \u0020\t\n]*$/;
// This escapes some markdown but there's a few cases that are TODO -

View File

@@ -1,4 +1,4 @@
// https://raw.githubusercontent.com/Rosey/markdown-draft-js/main/src/markdown-to-draft.js
// https://raw.githubusercontent.com/Rosey/markdown-draft-js/main/src/markdown_to_draft.js
import { Remarkable } from 'remarkable';
const TRAILING_NEW_LINE = /\n$/;