mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
handle carriage return in newlines_to_br
This commit is contained in:
@@ -295,7 +295,7 @@ module Liquid
|
||||
|
||||
# Add <br /> tags in front of all newlines in input string
|
||||
def newline_to_br(input)
|
||||
input.to_s.gsub(/\n/, "<br />\n")
|
||||
input.to_s.gsub(/\r?\n/, "<br />\n")
|
||||
end
|
||||
|
||||
# Reformat a date using Ruby's core Time#strftime( string ) -> string
|
||||
|
||||
@@ -539,6 +539,7 @@ class StandardFiltersTest < Minitest::Test
|
||||
|
||||
def test_newlines_to_br
|
||||
assert_template_result("a<br />\nb<br />\nc", "{{ source | newline_to_br }}", 'source' => "a\nb\nc")
|
||||
assert_template_result("a<br />\nb<br />\nc", "{{ source | newline_to_br }}", 'source' => "a\r\nb\nc")
|
||||
end
|
||||
|
||||
def test_plus
|
||||
|
||||
Reference in New Issue
Block a user