trac-wiki 0.3.28 → 0.3.29
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/trac-wiki/tree.rb +1 -0
- data/lib/trac-wiki/version.rb +1 -1
- data/test/parser_test.rb +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9b5ec9f3bc16fa6f4d396574df290fcec619af0
|
|
4
|
+
data.tar.gz: e1d703758466837f1fad8770696982f7d6c8667a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2209fd84630c345578bc32e9d7ca8557b9f0abb89f5d26b603ad6f836c14defebba6eea592eeac742472050c4a284752539d55cc87efbfcd8fc3fd3034e68ebb
|
|
7
|
+
data.tar.gz: f0ac26537e613f37456886b88e6d2e5901a01bb8b0ff691df619134b63a56d606c36a7d35b62ea1e243539df79def9b901f414c9c17379e000a461db33e11327
|
data/Gemfile.lock
CHANGED
data/lib/trac-wiki/tree.rb
CHANGED
data/lib/trac-wiki/version.rb
CHANGED
data/test/parser_test.rb
CHANGED
|
@@ -1252,6 +1252,9 @@ eos
|
|
|
1252
1252
|
tc "<div class=\"AHOJ\">TEST</div>\n", "{{!set ahoj|AHOJ}}<div class=\"{{$ahoj}}\">TEST</div></p>\n", allow_html: true
|
|
1253
1253
|
tc "<div class=\"**AHOJ**\">TEST</div>\n", "{{!set ahoj|AHOJ}}<div class=\"**{{$ahoj}}**\">TEST</div></p>\n", allow_html: true
|
|
1254
1254
|
end
|
|
1255
|
+
it 'should parse label' do
|
|
1256
|
+
tc "<p><label class=\"xxx\" for=\"ble\">AHOJ</label></p>\n", "<label class=\"xxx\" for=\"ble\">AHOJ</label>\n", allow_html: true
|
|
1257
|
+
end
|
|
1255
1258
|
it 'should parse at_callback ' do
|
|
1256
1259
|
tc "<p>WUF</p>\n", "{{$MEOW|meow}}\n"
|
|
1257
1260
|
tc "<p>meow</p>\n", "{{$UNKVAR|meow}}\n"
|