How do you add a line break in yattag?

2.9k Views Asked by At

When generating an HTML document in yattag, how do you add a line break (<br/>)?

4

There are 4 best solutions below

0
On BEST ANSWER

You could use doc.stag('br') since the stag method produces a self closing tag. You'll get <br />

0
On

For HTML: doc.stag('br')

For XML you can use this built-in method: doc.nl()

This works fine for me.

1
On

use doc.asis('
') they mention it in their web site for doc type hopefully this will help you in the new line.

0
On

I figured out one way:

doc, tag, text = Doc().tagtext()

# Do some stuff

# Insert a linebreak in doc
doc._append("<br/>")