tdiary-style-markdown 0.2.0 → 0.3.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.
- checksums.yaml +4 -4
- data/lib/tdiary/style/markdown.rb +1 -1
- data/lib/tdiary/style/markdown/version.rb +1 -1
- data/test/tdiary/style/markdown-test.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2bab61514aa2d79021f5c4aee983ea1810af321e
|
|
4
|
+
data.tar.gz: 0fffb76baf10b7e22a9d0a73729c8cf578c75ff5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 112d0e5b9e02747c1c95dbca5d244401a37066d961b692eabc484326d8ba2c10e82a59f2c1c88f6f573ab684fb2bd16a6f8c9104296ada8d736284524be53fe1
|
|
7
|
+
data.tar.gz: 188eccdbde931f708883365ea552cc66dd8c7f65e9ca3bbe2d69bd7c96c69280ef31dec53707f5aed411683ce7be33f9fd79015022605be171cfa9a0599e39f3
|
|
@@ -504,10 +504,11 @@ NOTE: `{{.NetworkSettings.IPAddress}}` is golang template.
|
|
|
504
504
|
# subTitle
|
|
505
505
|
|
|
506
506
|
Ruby{{fn "Object Oriented language"}} is fun!
|
|
507
|
-
HTML[^1] is a markup language[^2].
|
|
507
|
+
HTML[^1] is a markup language[^2][^3].
|
|
508
508
|
|
|
509
509
|
[^1]: Hyper Text Markup Language
|
|
510
|
-
[^2]:
|
|
510
|
+
[^2]: [example](http://www.example.com)
|
|
511
|
+
[^3]: http://www.example.com
|
|
511
512
|
|
|
512
513
|
EOF
|
|
513
514
|
@diary.append(source)
|
|
@@ -517,12 +518,11 @@ HTML[^1] is a markup language[^2].
|
|
|
517
518
|
<%=section_enter_proc( Time.at( 1041346800 ) )%>
|
|
518
519
|
<h3><%= subtitle_proc( Time.at( 1041346800 ), "subTitle" ) %></h3>
|
|
519
520
|
<p>Ruby<%=fn "Object Oriented language"%> is fun!
|
|
520
|
-
HTML<%=fn
|
|
521
|
+
HTML<%=fn %Q(Hyper Text Markup Language)%> is a markup language<%=fn %Q(<a href="http://www.example.com">example</a>)%><%=fn %Q(<a href="http://www.example.com">http://www.example.com</a>)%>.</p>
|
|
521
522
|
<%=section_leave_proc( Time.at( 1041346800 ) )%>
|
|
522
523
|
</div>
|
|
523
524
|
EOF
|
|
524
525
|
|
|
525
|
-
puts @diary.to_html
|
|
526
526
|
assert_equal(@html, @diary.to_html)
|
|
527
527
|
end
|
|
528
528
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tdiary-style-markdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kenji Okimoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-06-
|
|
11
|
+
date: 2015-06-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: redcarpet
|