浏览代码

Because real beautiful apostrophes matter

master
David Larlet 4 年前
父节点
当前提交
375ae7a2cc
找不到此签名对应的密钥
共有 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

正在加载...
取消
保存