fenom/docs/en/mods/strip.md

330 B

Modifier strip

This replaces all repeated spaces and tabs with a single space, or with the supplied string.

{"   one    two   "|strip} => 'one two'

Optional boolean parameter tell to the modifier strip also newline

{"    multi
    line
    text    "|strip:true} => 'multi line text'