Make RedCloth not convert double hyphens to emdashes. Closes #5292

As mentioned in http://redcloth.org/textile/writing-paragraph-text/#dashes
RedCloth converts double hyphens to emdashes. This causes problems in
the guides where options like --database, --full are rendered incorrectly.

This commit fixes it by customizing the emdash method in the
RedCloth::Formatters::HTML module to just return '--'. See their FAQ
http://redcloth.org/faq in the section 'How do I customize RedCloth?'
This commit is contained in:
Vijay Dev 2012-05-06 01:05:43 +05:30
parent f54a35c4ea
commit 58a49875df
1 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,11 @@
require 'active_support/core_ext/object/inclusion'
module RedCloth::Formatters::HTML
def emdash(opts)
"--"
end
end
module RailsGuides
module TextileExtensions
def notestuff(body)