mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
5 lines
155 B
Ruby
5 lines
155 B
Ruby
module NotesHelper
|
|
def truncated_note(note, characters = 50)
|
|
sanitize(textilize_without_paragraph(truncate(note.body, characters, "...")))
|
|
end
|
|
end
|