roll back code fence stuff

master
nate 2017-12-04 19:10:27 -08:00
parent c2ae69c1bd
commit ae77500996
1 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import re
from datetime import datetime
from typing import Optional, Callable
from markdown import markdown, extensions
from markdown import markdown
DOUBLE_NEWLINE_RE = re.compile(r'\n\n', flags=re.MULTILINE|re.DOTALL)
HEADER_TITLE_RE = re.compile(r'<h([12])>(.*?)</h\1>')
@ -138,7 +138,6 @@ def compile_markdown(file_path:str) -> str:
"""Given a string of markdown, compiles it and returns the result."""
return markdown(
slurp(file_path),
extensions=[extensions.fenced_code],
output_format='html5')
def compile_plaintext(file_path:str) -> str: