File tree Expand file tree Collapse file tree 5 files changed +91
-213
lines changed Expand file tree Collapse file tree 5 files changed +91
-213
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " MadMarkdownParser" ,
3
- "version" : " 0.0.2 " ,
4
- "madlibVersion" : " 0.11 .0" ,
3
+ "version" : " 0.0.3 " ,
4
+ "madlibVersion" : " 0.12 .0" ,
5
5
"main" : " src/Main.mad" ,
6
6
"importAliases" : {
7
7
"." : " src"
8
8
},
9
- "dependencies" : [
10
- {
11
- "minVersion" : " 0.0.6" ,
12
- "url" : " https://github.com/madlib-lang/madparser/archive/refs/tags/v0.0.6.zip" ,
13
- "description" : " MadParser"
14
- }
15
- ]
9
+ "dependencies" : []
16
10
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -45,21 +45,16 @@ here are the items:
45
45
`
46
46
47
47
48
- // parseMarkdown(mdFixture) |> IO.inspect
49
-
50
-
51
-
52
48
// mdBig = repeat(1500, mdFixture)
53
49
// mdBig = repeat(15000, mdFixture)
54
50
// mdBig2 = repeat(10000, "Some markdown title")
55
51
56
- #-console.time("parse")-#
57
-
58
52
// IO.log(len(mdBig))
59
53
60
54
// P.runParser(P.many(P.anyChar), mdBig)
61
55
// P.runParser(P.many(P.choice([P.anyChar])), mdBig)
62
- parseMarkdown(mdFixture) |> IO.inspect
63
56
64
- #-console.timeEnd("parse")-#
57
+
58
+ parseMarkdown(mdFixture) |> IO.log
59
+
65
60
You can’t perform that action at this time.
0 commit comments