Class: Redmine::WikiFormatting::NullFormatter::Formatter
- Inherits:
-
Object
- Object
- Redmine::WikiFormatting::NullFormatter::Formatter
- Includes:
- ActionView::Helpers::TagHelper, ActionView::Helpers::TextHelper, ActionView::Helpers::UrlHelper, LinksHelper
- Defined in:
- lib/redmine/wiki_formatting.rb
Constant Summary
Constants included from LinksHelper
Instance Method Summary collapse
-
#initialize(text) ⇒ Formatter
constructor
A new instance of Formatter.
- #to_html(*args) ⇒ Object
Methods included from LinksHelper
#auto_link!, #auto_mailto!, #restore_redmine_links
Constructor Details
#initialize(text) ⇒ Formatter
Returns a new instance of Formatter.
127 128 129 |
# File 'lib/redmine/wiki_formatting.rb', line 127 def initialize(text) @text = text end |
Instance Method Details
#to_html(*args) ⇒ Object
131 132 133 134 135 136 137 |
# File 'lib/redmine/wiki_formatting.rb', line 131 def to_html(*args) t = CGI::escapeHTML(@text) auto_link!(t) auto_mailto!(t) restore_redmine_links(t) simple_format(t, {}, :sanitize => false) end |