content-pipeline 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7f5f5bbc2443cdb2521b738fae3f0541548103ae
4
- data.tar.gz: 04a7408dd1fd130cee92d2475c920e806279acd8
3
+ metadata.gz: 9ac257d7d41f69f56e2b7f40ce1e96b40e8c3eee
4
+ data.tar.gz: 483fd532422f2656e6c374d82e86599a4d898544
5
5
  SHA512:
6
- metadata.gz: c443550d1219ab09e0f0df54c7f050ab4e87b4a269f789b3b1127d19e9e8d174f0ed9702f1818b3838b0bf78b0ccc2ac8ce9614a1088a56a1a817dce46c48afd
7
- data.tar.gz: cc77fd8d041ed307b516a25ccf8c1a8671b63550459a5eb445805933e4057686f0f3ee6848d9feb8c6f98cd6dae6b7979c64245e83f015a2ce1de003e3e9e04c
6
+ metadata.gz: d864c0b861e4ff9d9a0b0c4ae94fde0e0ac7cded86e4737561a993d214f5e3f25875b40d457e3de605f727c6200ad11ce0e17fb3b5c91c4a0ea99efa9faefce8
7
+ data.tar.gz: 612d4fe5c3d2cd9a2fe7396f5040f4da363262ae060f36ce1ace8fa157ebaf13a3622ca34d40073c76effb3b44aa1d8c2ed6c6ed399ce106be4251685b679dd0
data/Readme.md CHANGED
@@ -59,10 +59,10 @@ Content::Pipeline.new.filter('# Markdown')
59
59
  ```
60
60
 
61
61
  * Supports global options with overrides.
62
- * By default uses only `Markdown`.
62
+ * By default uses `CodeHighlight`, `Markdown`, `Gemoji`.
63
63
  * Supports multiple Markdowns.
64
64
 
65
- *It should be noted that if you send a list of filters you wish to use, it will not use the default filter at all. So where you see `[ MyFilter ]` that will be the only filter that is ran, since it automatically assumes this is the pipeline you wish to use.*
65
+ *It should be noted that if you send a list of filters you wish to use, it will not use the default filters at all. So where you see `[ MyFilter ]` that will be the only filter that is ran, since it automatically assumes this is the pipeline you wish to use.*
66
66
 
67
67
  ### Filter Options
68
68
 
@@ -41,11 +41,9 @@ class Content::Pipeline::Filters::CodeHighlight < Content::Pipeline::Filter
41
41
  private
42
42
  def highlight
43
43
  @str = @str.to_nokogiri_fragment
44
- @str.search("pre>code").each do |node|
45
- lang = node[:class] || node.parent[:lang] || @opts[:default] || "ruby"
46
- node.parent.replace(
47
- Templates[:wrap] % wrap(pygments(node.inner_text, lang), lang)
48
- )
44
+ @str.search("pre").each do |node|
45
+ lang = node[:lang] || @opts[:default] || "ruby"
46
+ node.replace Templates[:wrap] % wrap(pygments(node.inner_text, lang), lang)
49
47
  end
50
48
  end
51
49
 
@@ -51,8 +51,7 @@ class Content::Pipeline::Filters::Markdown < Content::Pipeline::Filter
51
51
  private
52
52
  def parse_github
53
53
  require "github/markdown"
54
- type = @type == :github ? :gfm : @type
55
- GitHub::Markdown.to_html(@str, type).strip
54
+ GitHub::Markdown.to_html(@str, @type).strip
56
55
  end
57
56
 
58
57
  private
@@ -1,5 +1,5 @@
1
1
  module Content
2
2
  class Pipeline
3
- VERSION = "1.3.1"
3
+ VERSION = "1.3.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: content-pipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jordon Bedwell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-16 00:00:00.000000000 Z
11
+ date: 2014-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  version: '0'
120
120
  requirements: []
121
121
  rubyforge_project:
122
- rubygems_version: 2.2.2
122
+ rubygems_version: 2.4.1
123
123
  signing_key:
124
124
  specification_version: 4
125
125
  summary: Adds a pipeline for your content.