ignore pycache

This commit is contained in:
2026-01-22 22:21:30 -07:00
parent a2a31d3feb
commit c18b6f1450
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -1,2 +1,3 @@
pandoc_resume/ pandoc_resume/
publish/ publish/
__pycache__
+6
View File
@@ -0,0 +1,6 @@
from markdown_it import MarkdownIt
md = MarkdownIt()
def mdtohtml(mdsrc):
return md.render(mdsrc)