extended-markdown-filter 0.4.3 → 0.4.4
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/README.md +1 -1
- data/extended-markdown-filter.gemspec +1 -1
- data/lib/extended-markdown-filter.rb +1 -6
- 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: e1ad9e19d100797fd24c5785e1fbd1987d21f14e
|
|
4
|
+
data.tar.gz: 7ab5e178f7c9872042439e372c65e26cce07dd58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96a5c2963c29544bbce503666c0909d01c3df7ea1fad8c664b1afb13d580facd820c36e08261b11a63c5a64398a95e80b12f8a30700e15dafb3e5926408bc27a
|
|
7
|
+
data.tar.gz: baea99ad8a1c49d4f31b4fd1753bb08d2fdf8bcc435c033de8b926acfbf14068e0789275c0704f256d6293ab4266bcf9cb30e6368c52487cc82900f41d384df6
|
data/README.md
CHANGED
|
@@ -68,7 +68,7 @@ The `helper` notation wraps content in an [accordion fold](http://jqueryui.com/a
|
|
|
68
68
|
|
|
69
69
|
### Admonition blocks
|
|
70
70
|
|
|
71
|
-
You can create separate, priority-colored callouts with `{{#tip}}`, `{{#warning}}`, and `{{#error}}` tags.
|
|
71
|
+
You can create separate, priority-colored callouts with `{{#tip}}`, `{{#note}}`, `{{#warning}}`, and `{{#error}}` tags.
|
|
72
72
|
|
|
73
73
|
#### Example
|
|
74
74
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "extended-markdown-filter"
|
|
3
|
-
spec.version = "0.4.
|
|
3
|
+
spec.version = "0.4.4"
|
|
4
4
|
spec.authors = ["Garen Torikian"]
|
|
5
5
|
spec.email = ["gjtorikian@gmail.com"]
|
|
6
6
|
spec.summary = %q{Add extended markup syntax to the HTML::Pipeline}
|
|
@@ -55,12 +55,7 @@ class ExtendedMarkdownFilter < HTML::Pipeline::MarkdownFilter
|
|
|
55
55
|
format_admonitions! html
|
|
56
56
|
format_octicons! html
|
|
57
57
|
|
|
58
|
-
|
|
59
|
-
doc.css(".command-line a").each do |node|
|
|
60
|
-
node.replace Nokogiri::XML::Text.new(node.text, node.document)
|
|
61
|
-
end
|
|
62
|
-
|
|
63
|
-
doc.to_s
|
|
58
|
+
html
|
|
64
59
|
end
|
|
65
60
|
|
|
66
61
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: extended-markdown-filter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Garen Torikian
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: html-pipeline
|