Setup Python project template.

This commit is contained in:
2022-01-25 14:36:18 +00:00
parent e7b7ee181b
commit 6329d05bfe
10 changed files with 74 additions and 0 deletions

7
tests/test_generate.py Normal file
View File

@@ -0,0 +1,7 @@
from gsitegen.generate import *
from html5tagger import E
def test_something():
doc = E()
parseMarkdown(doc, "## Heading 2")
assert str(doc) == "<h2>Heading 2</h2>"