parkdown-libertree 1.4.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +68 -0
  3. data/README.markdown +86 -0
  4. data/Rakefile +170 -0
  5. data/bin/parkdown +13 -0
  6. data/ext/extconf.h +3 -0
  7. data/ext/extconf.rb +15 -0
  8. data/ext/markdown.c +104 -0
  9. data/ext/markdown_lib.c +186 -0
  10. data/ext/markdown_lib.h +44 -0
  11. data/ext/markdown_output.c +1275 -0
  12. data/ext/markdown_parser.c +7275 -0
  13. data/ext/markdown_peg.h +90 -0
  14. data/ext/parsing_functions.c +128 -0
  15. data/ext/utility_functions.c +217 -0
  16. data/lib/markdown.rb +1 -0
  17. data/lib/peg_markdown.rb +104 -0
  18. data/test/MarkdownTest_1.0/MarkdownTest.pl +157 -0
  19. data/test/MarkdownTest_1.0/Tests/Amps and angle encoding.html +17 -0
  20. data/test/MarkdownTest_1.0/Tests/Amps and angle encoding.text +21 -0
  21. data/test/MarkdownTest_1.0/Tests/Auto links.html +18 -0
  22. data/test/MarkdownTest_1.0/Tests/Auto links.text +13 -0
  23. data/test/MarkdownTest_1.0/Tests/Backslash escapes.html +102 -0
  24. data/test/MarkdownTest_1.0/Tests/Backslash escapes.text +104 -0
  25. data/test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html +15 -0
  26. data/test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text +11 -0
  27. data/test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html +8 -0
  28. data/test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text +8 -0
  29. data/test/MarkdownTest_1.0/Tests/Horizontal rules.html +71 -0
  30. data/test/MarkdownTest_1.0/Tests/Horizontal rules.text +67 -0
  31. data/test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html +14 -0
  32. data/test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text +14 -0
  33. data/test/MarkdownTest_1.0/Tests/Inline HTML (Simple).html +72 -0
  34. data/test/MarkdownTest_1.0/Tests/Inline HTML (Simple).text +69 -0
  35. data/test/MarkdownTest_1.0/Tests/Inline HTML comments.html +13 -0
  36. data/test/MarkdownTest_1.0/Tests/Inline HTML comments.text +13 -0
  37. data/test/MarkdownTest_1.0/Tests/Links, inline style.html +9 -0
  38. data/test/MarkdownTest_1.0/Tests/Links, inline style.text +9 -0
  39. data/test/MarkdownTest_1.0/Tests/Links, reference style.html +18 -0
  40. data/test/MarkdownTest_1.0/Tests/Links, reference style.text +31 -0
  41. data/test/MarkdownTest_1.0/Tests/Literal quotes in titles.html +3 -0
  42. data/test/MarkdownTest_1.0/Tests/Literal quotes in titles.text +7 -0
  43. data/test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html +314 -0
  44. data/test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text +306 -0
  45. data/test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html +942 -0
  46. data/test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text +888 -0
  47. data/test/MarkdownTest_1.0/Tests/Nested blockquotes.html +9 -0
  48. data/test/MarkdownTest_1.0/Tests/Nested blockquotes.text +5 -0
  49. data/test/MarkdownTest_1.0/Tests/Ordered and unordered lists.html +137 -0
  50. data/test/MarkdownTest_1.0/Tests/Ordered and unordered lists.text +122 -0
  51. data/test/MarkdownTest_1.0/Tests/Strong and em together.html +7 -0
  52. data/test/MarkdownTest_1.0/Tests/Strong and em together.text +7 -0
  53. data/test/MarkdownTest_1.0/Tests/Tabs.html +25 -0
  54. data/test/MarkdownTest_1.0/Tests/Tabs.text +21 -0
  55. data/test/MarkdownTest_1.0/Tests/Tidyness.html +8 -0
  56. data/test/MarkdownTest_1.0/Tests/Tidyness.text +5 -0
  57. data/test/MarkdownTest_1.0.3/MarkdownTest.pl +176 -0
  58. data/test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.html +17 -0
  59. data/test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.text +21 -0
  60. data/test/MarkdownTest_1.0.3/Tests/Auto links.html +18 -0
  61. data/test/MarkdownTest_1.0.3/Tests/Auto links.text +13 -0
  62. data/test/MarkdownTest_1.0.3/Tests/Backslash escapes.html +118 -0
  63. data/test/MarkdownTest_1.0.3/Tests/Backslash escapes.text +120 -0
  64. data/test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.html +15 -0
  65. data/test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.text +11 -0
  66. data/test/MarkdownTest_1.0.3/Tests/Code Blocks.html +18 -0
  67. data/test/MarkdownTest_1.0.3/Tests/Code Blocks.text +14 -0
  68. data/test/MarkdownTest_1.0.3/Tests/Code Spans.html +6 -0
  69. data/test/MarkdownTest_1.0.3/Tests/Code Spans.text +6 -0
  70. data/test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.html +8 -0
  71. data/test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.text +8 -0
  72. data/test/MarkdownTest_1.0.3/Tests/Horizontal rules.html +71 -0
  73. data/test/MarkdownTest_1.0.3/Tests/Horizontal rules.text +67 -0
  74. data/test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).html +15 -0
  75. data/test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).text +15 -0
  76. data/test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).html +72 -0
  77. data/test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).text +69 -0
  78. data/test/MarkdownTest_1.0.3/Tests/Inline HTML comments.html +13 -0
  79. data/test/MarkdownTest_1.0.3/Tests/Inline HTML comments.text +13 -0
  80. data/test/MarkdownTest_1.0.3/Tests/Links, inline style.html +11 -0
  81. data/test/MarkdownTest_1.0.3/Tests/Links, inline style.text +12 -0
  82. data/test/MarkdownTest_1.0.3/Tests/Links, reference style.html +52 -0
  83. data/test/MarkdownTest_1.0.3/Tests/Links, reference style.text +71 -0
  84. data/test/MarkdownTest_1.0.3/Tests/Links, shortcut references.html +9 -0
  85. data/test/MarkdownTest_1.0.3/Tests/Links, shortcut references.text +20 -0
  86. data/test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.html +3 -0
  87. data/test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.text +7 -0
  88. data/test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.html +314 -0
  89. data/test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.text +306 -0
  90. data/test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.html +942 -0
  91. data/test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.text +888 -0
  92. data/test/MarkdownTest_1.0.3/Tests/Nested blockquotes.html +9 -0
  93. data/test/MarkdownTest_1.0.3/Tests/Nested blockquotes.text +5 -0
  94. data/test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.html +148 -0
  95. data/test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.text +131 -0
  96. data/test/MarkdownTest_1.0.3/Tests/Strong and em together.html +7 -0
  97. data/test/MarkdownTest_1.0.3/Tests/Strong and em together.text +7 -0
  98. data/test/MarkdownTest_1.0.3/Tests/Tabs.html +25 -0
  99. data/test/MarkdownTest_1.0.3/Tests/Tabs.text +21 -0
  100. data/test/MarkdownTest_1.0.3/Tests/Tidyness.html +8 -0
  101. data/test/MarkdownTest_1.0.3/Tests/Tidyness.text +5 -0
  102. data/test/benchmark.rb +49 -0
  103. data/test/markdown_test.rb +84 -0
  104. metadata +150 -0
metadata ADDED
@@ -0,0 +1,150 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: parkdown-libertree
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.26
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Tomayko
8
+ - Rekado
9
+ - Pistos
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2016-09-27 00:00:00.000000000 Z
14
+ dependencies: []
15
+ description: ''
16
+ email: spam@elephly.net
17
+ executables:
18
+ - parkdown
19
+ extensions:
20
+ - ext/extconf.rb
21
+ extra_rdoc_files:
22
+ - LICENSE
23
+ files:
24
+ - LICENSE
25
+ - README.markdown
26
+ - Rakefile
27
+ - bin/parkdown
28
+ - ext/extconf.h
29
+ - ext/extconf.rb
30
+ - ext/markdown.c
31
+ - ext/markdown_lib.c
32
+ - ext/markdown_lib.h
33
+ - ext/markdown_output.c
34
+ - ext/markdown_parser.c
35
+ - ext/markdown_peg.h
36
+ - ext/parsing_functions.c
37
+ - ext/utility_functions.c
38
+ - lib/markdown.rb
39
+ - lib/peg_markdown.rb
40
+ - test/MarkdownTest_1.0.3/MarkdownTest.pl
41
+ - test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.html
42
+ - test/MarkdownTest_1.0.3/Tests/Amps and angle encoding.text
43
+ - test/MarkdownTest_1.0.3/Tests/Auto links.html
44
+ - test/MarkdownTest_1.0.3/Tests/Auto links.text
45
+ - test/MarkdownTest_1.0.3/Tests/Backslash escapes.html
46
+ - test/MarkdownTest_1.0.3/Tests/Backslash escapes.text
47
+ - test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.html
48
+ - test/MarkdownTest_1.0.3/Tests/Blockquotes with code blocks.text
49
+ - test/MarkdownTest_1.0.3/Tests/Code Blocks.html
50
+ - test/MarkdownTest_1.0.3/Tests/Code Blocks.text
51
+ - test/MarkdownTest_1.0.3/Tests/Code Spans.html
52
+ - test/MarkdownTest_1.0.3/Tests/Code Spans.text
53
+ - test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.html
54
+ - test/MarkdownTest_1.0.3/Tests/Hard-wrapped paragraphs with list-like lines.text
55
+ - test/MarkdownTest_1.0.3/Tests/Horizontal rules.html
56
+ - test/MarkdownTest_1.0.3/Tests/Horizontal rules.text
57
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).html
58
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Advanced).text
59
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).html
60
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML (Simple).text
61
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML comments.html
62
+ - test/MarkdownTest_1.0.3/Tests/Inline HTML comments.text
63
+ - test/MarkdownTest_1.0.3/Tests/Links, inline style.html
64
+ - test/MarkdownTest_1.0.3/Tests/Links, inline style.text
65
+ - test/MarkdownTest_1.0.3/Tests/Links, reference style.html
66
+ - test/MarkdownTest_1.0.3/Tests/Links, reference style.text
67
+ - test/MarkdownTest_1.0.3/Tests/Links, shortcut references.html
68
+ - test/MarkdownTest_1.0.3/Tests/Links, shortcut references.text
69
+ - test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.html
70
+ - test/MarkdownTest_1.0.3/Tests/Literal quotes in titles.text
71
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.html
72
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Basics.text
73
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.html
74
+ - test/MarkdownTest_1.0.3/Tests/Markdown Documentation - Syntax.text
75
+ - test/MarkdownTest_1.0.3/Tests/Nested blockquotes.html
76
+ - test/MarkdownTest_1.0.3/Tests/Nested blockquotes.text
77
+ - test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.html
78
+ - test/MarkdownTest_1.0.3/Tests/Ordered and unordered lists.text
79
+ - test/MarkdownTest_1.0.3/Tests/Strong and em together.html
80
+ - test/MarkdownTest_1.0.3/Tests/Strong and em together.text
81
+ - test/MarkdownTest_1.0.3/Tests/Tabs.html
82
+ - test/MarkdownTest_1.0.3/Tests/Tabs.text
83
+ - test/MarkdownTest_1.0.3/Tests/Tidyness.html
84
+ - test/MarkdownTest_1.0.3/Tests/Tidyness.text
85
+ - test/MarkdownTest_1.0/MarkdownTest.pl
86
+ - test/MarkdownTest_1.0/Tests/Amps and angle encoding.html
87
+ - test/MarkdownTest_1.0/Tests/Amps and angle encoding.text
88
+ - test/MarkdownTest_1.0/Tests/Auto links.html
89
+ - test/MarkdownTest_1.0/Tests/Auto links.text
90
+ - test/MarkdownTest_1.0/Tests/Backslash escapes.html
91
+ - test/MarkdownTest_1.0/Tests/Backslash escapes.text
92
+ - test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.html
93
+ - test/MarkdownTest_1.0/Tests/Blockquotes with code blocks.text
94
+ - test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.html
95
+ - test/MarkdownTest_1.0/Tests/Hard-wrapped paragraphs with list-like lines.text
96
+ - test/MarkdownTest_1.0/Tests/Horizontal rules.html
97
+ - test/MarkdownTest_1.0/Tests/Horizontal rules.text
98
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).html
99
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Advanced).text
100
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Simple).html
101
+ - test/MarkdownTest_1.0/Tests/Inline HTML (Simple).text
102
+ - test/MarkdownTest_1.0/Tests/Inline HTML comments.html
103
+ - test/MarkdownTest_1.0/Tests/Inline HTML comments.text
104
+ - test/MarkdownTest_1.0/Tests/Links, inline style.html
105
+ - test/MarkdownTest_1.0/Tests/Links, inline style.text
106
+ - test/MarkdownTest_1.0/Tests/Links, reference style.html
107
+ - test/MarkdownTest_1.0/Tests/Links, reference style.text
108
+ - test/MarkdownTest_1.0/Tests/Literal quotes in titles.html
109
+ - test/MarkdownTest_1.0/Tests/Literal quotes in titles.text
110
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.html
111
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Basics.text
112
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.html
113
+ - test/MarkdownTest_1.0/Tests/Markdown Documentation - Syntax.text
114
+ - test/MarkdownTest_1.0/Tests/Nested blockquotes.html
115
+ - test/MarkdownTest_1.0/Tests/Nested blockquotes.text
116
+ - test/MarkdownTest_1.0/Tests/Ordered and unordered lists.html
117
+ - test/MarkdownTest_1.0/Tests/Ordered and unordered lists.text
118
+ - test/MarkdownTest_1.0/Tests/Strong and em together.html
119
+ - test/MarkdownTest_1.0/Tests/Strong and em together.text
120
+ - test/MarkdownTest_1.0/Tests/Tabs.html
121
+ - test/MarkdownTest_1.0/Tests/Tabs.text
122
+ - test/MarkdownTest_1.0/Tests/Tidyness.html
123
+ - test/MarkdownTest_1.0/Tests/Tidyness.text
124
+ - test/benchmark.rb
125
+ - test/markdown_test.rb
126
+ homepage: http://github.com/Libertree/parkdown
127
+ licenses: []
128
+ metadata: {}
129
+ post_install_message:
130
+ rdoc_options: []
131
+ require_paths:
132
+ - lib
133
+ required_ruby_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ required_rubygems_version: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: '0'
143
+ requirements: []
144
+ rubyforge_project:
145
+ rubygems_version: 2.5.1
146
+ signing_key:
147
+ specification_version: 4
148
+ summary: Fast Markdown implementation
149
+ test_files:
150
+ - test/markdown_test.rb