You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
447 B
24 lines
447 B
#!/usr/bin/env python3
|
|
|
|
|
|
import re
|
|
import sys
|
|
from typing import List
|
|
|
|
# Import local files
|
|
from transform import transform
|
|
from util import *
|
|
from context import Context
|
|
|
|
from mj_show import show
|
|
|
|
doc = import_md(open(sys.argv[1], "r").read())
|
|
|
|
print(show(doc))
|
|
context = Context(doc)
|
|
doc = doc.walk(transform, context)
|
|
print("---------------------")
|
|
print(show(doc))
|
|
print(convert_text(doc, input_format="panflute", output_format="markdown"))
|
|
|
|
|
|
|