From fb62a93499b2345ac7ebf57a90d0e503634b1c56 Mon Sep 17 00:00:00 2001 From: Morten Delenk Date: Tue, 12 Apr 2016 19:53:50 +0200 Subject: [PATCH] Make it not overflow --- index.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/index.py b/index.py index a0dc3dd..3790c6b 100755 --- a/index.py +++ b/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())