I am using dominate module in Python 3.7, I am not sure how to handle the new line characters that are existing in Python. As per my requirement the new line character \n
should be converted to break character in HTML <br>
. But that is not happening. The dominate module is ignoring the newline character which is not how I am expecting it to behave. Below is the code which I have tried.
import dominate
from dominate.tags import *
text = "Hello\nworld!"
doc = dominate.document(title='Dominate your HTML')
with doc:
h1(text)
with open("dominate22.html", 'w') as file:
file.write(doc.render())
The output HTML code is
<!DOCTYPE html>
<html>
<head>
<title>Dominate your HTML</title>
</head>
<body>
<h1>Hello,
World!</h1>
</body>
</html>
Also I have tried replacing the new line character with break character i.e text.replace("\n", "<br>")
But this was creating a string like Hello<br>World
, which was not what I was expecting. Attaching the HTML code for the same.
<!DOCTYPE html>
<html>
<head>
<title>Dominate your HTML</title>
</head>
<body>
<h1>Hello<br>world</h1>
</body>
</html>
For the dominate library the
\n
is just a character in a text string. It's not the same as a line break<br>
HTML element so you have to do add it programmatically.This example shows two approaches, using a context manager and adding nodes to an instance:
Gives this HTML: