par(md): use space instead of \s
This commit is contained in:
parent
7c1d876b36
commit
ac60fc50bf
3 changed files with 12 additions and 16 deletions
2
makefile
2
makefile
|
@ -1,6 +1,6 @@
|
|||
|
||||
test-w:
|
||||
deno test --watch
|
||||
deno test --allow-read --watch
|
||||
|
||||
test:
|
||||
deno test
|
||||
|
|
|
@ -293,22 +293,18 @@ Deno.test({
|
|||
// Doc
|
||||
|
||||
Deno.test({
|
||||
name: "should parse all document",
|
||||
name: "should parse all document from file",
|
||||
fn: () => {
|
||||
const par = new MarkdownParser();
|
||||
|
||||
const content = `\
|
||||
# What is Lorem Ipsum?
|
||||
|
||||
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
|
||||
|
||||
- Sed in orci non lorem luctus dictum ac vel justo.
|
||||
- Nunc non leo vel dolor fringilla imperdiet.
|
||||
- Proin finibus ipsum quis molestie porta.`;
|
||||
assertEquals(
|
||||
ren.render(par.parse(Deno.readTextFileSync("test_data/doc_01.md"))),
|
||||
"<h1>What is Lorem Ipsum?</h1><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p><ul><li>Sed in orci non lorem luctus dictum ac vel justo.</li><li>Nunc non leo vel dolor fringilla imperdiet.</li><li>Proin finibus ipsum quis molestie porta.</li></ul>",
|
||||
);
|
||||
|
||||
assertEquals(
|
||||
ren.render(par.parse(content)),
|
||||
"<h1>What is Lorem Ipsum?</h1><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p><ul><li>Sed in orci non lorem luctus dictum ac vel justo.</li><li>Nunc non leo vel dolor fringilla imperdiet.</li><li>Proin finibus ipsum quis molestie porta.</li></ul>",
|
||||
ren.render(par.parse(Deno.readTextFileSync("test_data/doc_02.md"))),
|
||||
"<h1>What is Lorem Ipsum?</h1><ul><li>Sed in orci non lorem luctus dictum ac vel justo.</li><li>Nunc non leo vel dolor fringilla imperdiet.</li><li>Proin finibus ipsum quis molestie porta.</li></ul>",
|
||||
);
|
||||
},
|
||||
});
|
||||
|
|
|
@ -2,12 +2,12 @@ import { AnyNode, Elem, Fragment, TextNode } from "../core/node.ts";
|
|||
import { isNil, Nilable } from "../core/utils.ts";
|
||||
import { Parser } from "./types.ts";
|
||||
|
||||
const RE_EMPTY_LINE = /^[ \t]*\r?\n/;
|
||||
const RE_EMPTY_LINE = /^[ ]*\r?\n/;
|
||||
|
||||
const RE_OPEN_ATX_HEADING = /^\s{0,3}(#{1,6})(\s|$)/;
|
||||
const RE_CLOSE_ATX_HEADING = /(^|\s+)#*\s*$/;
|
||||
const RE_OPEN_ATX_HEADING = /^[ ]{0,3}(#{1,6})([ ]|$)/;
|
||||
const RE_CLOSE_ATX_HEADING = /(^|[ ]+)#*[ ]*$/;
|
||||
|
||||
const RE_LIST_ITEM = /^\s{0,3}([-+*])(\s|$)/;
|
||||
const RE_LIST_ITEM = /^[ ]{0,3}([-+*])([ ]|$)/;
|
||||
|
||||
// TODO: make better regex for destination
|
||||
const RE_LINK = /\[([\s\S]*?)]\((?:([^\s]*)|<(.+?)>)(?: ('|")(.+?)\4)?\)/;
|
||||
|
|
Reference in a new issue