Clean up plugin

This commit is contained in:
Joe Rickerby
2019-11-10 13:22:44 +00:00
parent ccd22e5a5a
commit 22ae365ae9
@@ -1,5 +1,4 @@
import mkdocs, re, os, io, cgi
from pprint import pprint
TAG_REGEX_PATTERN = re.compile(
r'''
@@ -24,7 +23,6 @@ class ImportMarkdownPlugin(mkdocs.plugins.BasePlugin):
filename = match.group('filename')
start = match.group('start')
end = match.group('end')
print('got a match', filename, start, end)
file_path_abs = os.path.join(os.path.dirname(page_src_path), filename)