Make it not overflow

This commit is contained in:
Morten Delenk 2016-04-12 19:53:50 +02:00
parent 335b96c85e
commit fb62a93499

View file

@ -2,5 +2,13 @@
from htmlgen import *
print("Content-type: text/html\r\n\r\n")
html=htmlgen.HTMLgen(pagelayout.getLayoutXML().decode('utf-8'),"Home Page")
html.addArticle("Markdown test","*Hello, World!*")
html.addArticle("Markdown test","""*Hello, World!*
test
test
**HI**
**TEST**""")
print(html.renderSite())