Преглед изворни кода

Because real beautiful apostrophes matter

master
David Larlet пре 4 година
родитељ
комит
375ae7a2cc
No known key found for this signature in database
1 измењених фајлова са 5 додато и 1 уклоњено
  1. 5
    1
      site.py

+ 5
- 1
site.py Прегледај датотеку

@@ -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…
Откажи
Сачувај