diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-10 10:08:30 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-10 10:08:30 +0900 |
commit | bccb5d561d607f14d6c87def972d594f8dbcb74d (patch) | |
tree | b3166564e063a5c6db84b7c145f02d9dd84d1ed4 /scripts | |
parent | 1d36459069ee0d7010b363757b03a99be2f3450a (diff) |
myhtml: add missing <body> for wiki
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/myhtml.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/myhtml.py b/scripts/myhtml.py index e0f35b5..ae2c4dd 100755 --- a/scripts/myhtml.py +++ b/scripts/myhtml.py @@ -379,7 +379,8 @@ class periject_html(base.base): # textile print("<link rel=\"stylesheet\" type=\"text/css\" href=\"../../wiki/css\">") - print(textile.textile(text)) + with html("body"): + print(textile.textile(text)) #-------------------- # body |