10 lines
190 B
Ruby
10 lines
190 B
Ruby
class NotePresenter
|
|
def initialize(note)
|
|
@note = note
|
|
end
|
|
|
|
def formatted_body
|
|
note.body.gsub(/<tn>(.+?)<\/tn>/m, '<br><p class="tn">\1</p>').gsub(/\n/, '<br>')
|
|
end
|
|
end
|