mirror of
https://github.com/servo/servo
synced 2026-05-02 12:26:06 +02:00
14 lines
259 B
Python
14 lines
259 B
Python
from py.xml import html
|
|
|
|
paras = "First Para", "Second para"
|
|
|
|
doc = html.html(
|
|
html.head(
|
|
html.meta(name="Content-Type", value="text/html; charset=latin1")),
|
|
html.body(
|
|
[html.p(p) for p in paras]))
|
|
|
|
print unicode(doc).encode('latin1')
|
|
|
|
|