trac-wiki 0.3.13 → 0.3.14
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/trac-wiki/tree.rb +1 -1
- data/lib/trac-wiki/version.rb +1 -1
- data/test/parser_test.rb +1 -0
- metadata +2 -2
data/lib/trac-wiki/tree.rb
CHANGED
|
@@ -145,7 +145,7 @@ module TracWiki
|
|
|
145
145
|
:h1, :h2, :h3, :h4, :h5, :h6,
|
|
146
146
|
:div, :span, :p, :pre,
|
|
147
147
|
:li, :ul, :ol, :dl, :dt, :dd,
|
|
148
|
-
:b, :tt, :u, :del, :blockquote, :strong, :em, :sup, :sub,
|
|
148
|
+
:b, :tt, :u, :del, :blockquote, :strong, :em, :sup, :sub, :i,
|
|
149
149
|
:table, :tr, :td, :th,
|
|
150
150
|
:br , :img, :hr,
|
|
151
151
|
:form, :textarea, :input, :select, :option,
|
data/lib/trac-wiki/version.rb
CHANGED
data/test/parser_test.rb
CHANGED
|
@@ -1045,6 +1045,7 @@ eos
|
|
|
1045
1045
|
tc "<p><a href=\"there#i+m\">There</a></p>\n", "[[there#i m|There]]"
|
|
1046
1046
|
tc "<p><a href=\"http://example.com/there#i+m\">There</a></p>\n", "[[there#i m|There]]", base: 'http://example.com/'
|
|
1047
1047
|
tc "<p><a href=\"#here+i+m\">Here</a></p>\n", "[[#here i m|Here]]", base: 'http://example.com/'
|
|
1048
|
+
tc "<p><a href=\"#here+i+m\">He<strong>r</strong>e</a></p>\n", "[[#here i m|He**r**e]]"
|
|
1048
1049
|
end
|
|
1049
1050
|
it 'should parse dnl inside macro' do
|
|
1050
1051
|
tc "<p>d<blockquote>e</blockquote></p>\n", "{{!ifeq a|b|c|d\n e}}"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trac-wiki
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.14
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-06-
|
|
12
|
+
date: 2014-06-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bacon
|