Module: Source2MD::TextHelper
Instance Method Summary collapse
Instance Method Details
#add_newline_at_end_of_text(text) ⇒ Object
9 10 11 |
# File 'lib/source2md/text_helper.rb', line 9 def add_newline_at_end_of_text(text) text.strip + "\n" end |
#text_squish(text) ⇒ Object
5 6 7 |
# File 'lib/source2md/text_helper.rb', line 5 def text_squish(text) text.gsub(/\n{2,}/, "\n\n") end |