Make it not overflow
This commit is contained in:
parent
335b96c85e
commit
fb62a93499
1 changed files with 9 additions and 1 deletions
10
index.py
10
index.py
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue