eorg/examples/raw/output.py

10 lines
196 B
Python

import os
import pytest
from eorg.parser import parse
with open(os.path.abspath("../../tests/fixtures/test.org"), "r") as fp:
doc = parse(fp)
for item in doc.body():
print(item)