Here are two lines of code with very different output which should have the same output:
using Markdown;
mymarkdown = md"A simple $1>0$ inequality!"
mymarkdown |> display
using CSSUtil
Node(:div,mymarkdown) |> display
Why does CSSUtil insert linebreaks?
