Method: HTML#p_to_aozora
- Defined in:
- lib/html.rb
#p_to_aozora(text = @string) ⇒ Object
p タグで段落を作ってる場合(brタグが無い場合)に改行されるように
70 71 72 |
# File 'lib/html.rb', line 70 def p_to_aozora(text = @string) text.gsub(/\n?<\/p>/i, "\n") end |