html-pipeline-rouge_filter 1.0.3 → 1.0.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/CHANGELOG.md +4 -0
- data/README.md +6 -2
- data/lib/html/pipeline/rouge_filter.rb +5 -0
- data/lib/html/pipeline/rouge_filter/version.rb +1 -1
- data/test/rouge_filter_test.rb +9 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3435aff7d37f882d774a516c1020d59b6e4468e
|
4
|
+
data.tar.gz: bba6bbf9841d22c6d867f302a28f29250ffcbd9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77a5575eb8b6d8f06afe2e91615820995c38a4e1b55873456c558cf07deefd2fba5c05631bb4142101e2605f5b55c23361f693ea41183399c71cae38314d0e94
|
7
|
+
data.tar.gz: 448789503c78cd2676076857add9760fc6a88adcd345d7a1f98b124a65cfe84f38dacacfc9e2b416224b8aa8a53d89269cbbb1d9fdd32ebcc3481ff64fdfe8a1
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 1.0.4 - 2016.04.16
|
6
|
+
|
7
|
+
- Replace `<br>` to newline via `replace_br` option in context hash [#7](https://github.com/JuanitoFatas/html-pipeline-rouge_filter/pull/7) by @allenwq
|
8
|
+
|
5
9
|
## 1.0.3 - 2016.02.10
|
6
10
|
|
7
11
|
- Generate line numbers via `line_numbers` option in context hash [#5](https://github.com/JuanitoFatas/html-pipeline-rouge_filter/pull/5) by @lowjoel
|
data/README.md
CHANGED
@@ -58,8 +58,12 @@ Prints (without the linebreaks):
|
|
58
58
|
</pre>
|
59
59
|
```
|
60
60
|
|
61
|
-
You can specify
|
62
|
-
[context](https://github.com/jch/html-pipeline#examples) hash
|
61
|
+
You can specify following options in
|
62
|
+
[context](https://github.com/jch/html-pipeline#examples) hash:
|
63
|
+
|
64
|
+
`line_numbers`: Line numbers will be displayed if set to true.
|
65
|
+
|
66
|
+
`replace_br`: `<br>` tags in the code will be replaced with new line characters (`\n`) if set to true.
|
63
67
|
|
64
68
|
## Contributing
|
65
69
|
|
@@ -13,6 +13,7 @@ module HTML
|
|
13
13
|
default = must_str(context[:highlight])
|
14
14
|
next unless lang = node["lang"] || default
|
15
15
|
next unless lexer = lexer_for(lang)
|
16
|
+
node.css("br").each { |br| br.replace("\n") } if replace_br
|
16
17
|
text = node.inner_text
|
17
18
|
html = highlight_with(lexer, text)
|
18
19
|
next if html.nil?
|
@@ -39,6 +40,10 @@ module HTML
|
|
39
40
|
context[:line_numbers] || false
|
40
41
|
end
|
41
42
|
|
43
|
+
def replace_br
|
44
|
+
context[:replace_br] || false
|
45
|
+
end
|
46
|
+
|
42
47
|
def formatter(css_class: default_css_class)
|
43
48
|
Rouge::Formatters::HTML.new(css_class: css_class,
|
44
49
|
line_numbers: line_numbers)
|
data/test/rouge_filter_test.rb
CHANGED
@@ -88,4 +88,13 @@ class HTML::Pipeline::RougeFilterTest < Minitest::Test
|
|
88
88
|
|
89
89
|
assert_kind_of Rouge::Lexers::Shell, filter.lexer_for("shell")
|
90
90
|
end
|
91
|
+
|
92
|
+
def test_replacing_br
|
93
|
+
filter = RougeFilter.new \
|
94
|
+
"<pre lang='ruby'>hello<br>world</pre>", replace_br: true
|
95
|
+
|
96
|
+
doc = filter.call
|
97
|
+
assert_equal "<pre class=\"highlight highlight-ruby\"><code>"\
|
98
|
+
"<span class=\"n\">hello</span>\n<span class=\"n\">world</span></code></pre>\n", doc.to_html
|
99
|
+
end
|
91
100
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: html-pipeline-rouge_filter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juanito Fatas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: html-pipeline
|
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
91
|
version: '0'
|
92
92
|
requirements: []
|
93
93
|
rubyforge_project:
|
94
|
-
rubygems_version: 2.
|
94
|
+
rubygems_version: 2.6.2
|
95
95
|
signing_key:
|
96
96
|
specification_version: 4
|
97
97
|
summary: Rouge integration with html-pipeline.
|