Browse Source

Because real beautiful apostrophes matter

master
David Larlet 4 years ago
parent
commit
375ae7a2cc
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      site.py

+ 5
- 1
site.py View File

@@ -49,7 +49,11 @@ def parse_markdown(file_path):
"""Extract title, (HTML) content and metadata from a markdown file."""
parser = markdown.Markdown(extensions=["meta"])
with codecs.open(file_path, "r") as source:
content = parser.convert(source.read())
source = source.read()
# Avoid replacing quotes from code #PoorManParsing.
if ":::" not in source and "`" not in source:
source = source.replace("'", "’")
content = parser.convert(source)
metadata = parser.Meta if hasattr(parser, "Meta") else None
title = metadata["title"][0] if metadata is not None else ""
return title, content, metadata

Loading…
Cancel
Save