Removing RedCloth gem lock and adding notes in for deps
This commit is contained in:
parent
35a467117e
commit
d948e0da91
|
@ -19,6 +19,15 @@ h2. Diving In
|
||||||
* Customize the "Permalinks":http://wiki.github.com/mojombo/jekyll/permalinks your posts are generated with
|
* Customize the "Permalinks":http://wiki.github.com/mojombo/jekyll/permalinks your posts are generated with
|
||||||
* Use the built-in "Liquid Extensions":http://wiki.github.com/mojombo/jekyll/liquid-extensions to make your life easier
|
* Use the built-in "Liquid Extensions":http://wiki.github.com/mojombo/jekyll/liquid-extensions to make your life easier
|
||||||
|
|
||||||
|
h2. Dependencies
|
||||||
|
|
||||||
|
* RedCloth 4.1.0: Textile support. This version obeys <notextile> tags. The latest version will still work, but tests will fail.
|
||||||
|
* Liquid: Templating system
|
||||||
|
* Classifier: Generating related posts
|
||||||
|
* Maruku: Default markdown engine
|
||||||
|
* Directory Watcher: Auto-regeneration of sites
|
||||||
|
* Open4: Talking to pygments for syntax highlighting
|
||||||
|
|
||||||
h2. License
|
h2. License
|
||||||
|
|
||||||
(The MIT License)
|
(The MIT License)
|
||||||
|
|
|
@ -12,7 +12,6 @@ require 'yaml'
|
||||||
|
|
||||||
# 3rd party
|
# 3rd party
|
||||||
require 'liquid'
|
require 'liquid'
|
||||||
gem 'RedCloth', '= 4.1.0'
|
|
||||||
require 'redcloth'
|
require 'redcloth'
|
||||||
|
|
||||||
# internal requires
|
# internal requires
|
||||||
|
|
|
@ -85,6 +85,7 @@ CONTENT
|
||||||
create_post(@content, {}, false)
|
create_post(@content, {}, false)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Broken in RedCloth 4.1.9
|
||||||
should "not textilize highlight block" do
|
should "not textilize highlight block" do
|
||||||
assert_no_match %r{3\.\.2\.\.1\.\."</span><br />}, @result
|
assert_no_match %r{3\.\.2\.\.1\.\."</span><br />}, @result
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue