Thomas Leitner
unread,Nov 30, 2020, 3:07:37 AM11/30/20Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to kramdow...@googlegroups.com
On 2020-11-29 14:27 -0800 Stéphane D'Alu wrote:
> Hi,
>
> I need to have kramdown generate xhtml compatible output, is there a
> way to force this ?
>
> Currently using <br/> inside markdown document will render as <br>
If I convert the following input:
This is <br/> some test
I get the following output:
<p>This is <br /> some test</p>
So kramdown *does* generate the correct output. Maybe some part else in
your conversion pipeline changes the output.
All the best,
Thomas