Remove print in example
This commit is contained in:
parent
45779c6e3d
commit
e2ee303815
|
@ -1,10 +1,9 @@
|
|||
import os
|
||||
import os
|
||||
from eorg.parser import parse
|
||||
from eorg.html import generate
|
||||
|
||||
doc=[]
|
||||
with open(os.path.abspath('../../tests/fixtures/test.org'), 'r') as fp:
|
||||
doc = []
|
||||
with open(os.path.abspath("../../tests/fixtures/test.org"), "r") as fp:
|
||||
doc = parse(fp)
|
||||
|
||||
print('#################')
|
||||
print(generate(doc).read())
|
||||
|
|
Loading…
Reference in New Issue