Ask for advice on jade/pug grammar

< button > 12 < / button > < button > 34 < / button > without line wrapping, how to write this in jade?

Mar.09,2021

jade itself does not support this, but you can write this html directly, and the jade will remain intact.


| < button > 12 < / button > < button > 34 < / button >

the pipeline will parse the html intact

Menu