markdoc 1.0.3 → 1.1.0
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.
- data/lib/markdoc/pseudocode.treetop +2 -6
- data/lib/markdoc/version.rb +1 -1
- metadata +2 -2
|
@@ -21,11 +21,7 @@ module Markdoc
|
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
rule sentence
|
|
24
|
-
( !keywords
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
rule word
|
|
28
|
-
[a-zA-Z0-9 ]+
|
|
24
|
+
( !keywords [^\n]+ )+ <SentenceLiteral>
|
|
29
25
|
end
|
|
30
26
|
|
|
31
27
|
rule space
|
|
@@ -36,4 +32,4 @@ module Markdoc
|
|
|
36
32
|
space* [\n]+ space*
|
|
37
33
|
end
|
|
38
34
|
end
|
|
39
|
-
end
|
|
35
|
+
end
|
data/lib/markdoc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: markdoc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
version: '0'
|
|
119
119
|
requirements: []
|
|
120
120
|
rubyforge_project:
|
|
121
|
-
rubygems_version: 1.8.
|
|
121
|
+
rubygems_version: 1.8.25
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 3
|
|
124
124
|
summary: Markdown to HTML converter with diagrams
|