Meekdai / Gmeek

Gmeek is a Blog All in Github
https://meekdai.github.io
MIT License
1.74k stars 250 forks source link

建议优化一下 Gmeek-html 转换的匹配规则 #201

Open GJKen opened 2 weeks ago

GJKen commented 2 weeks ago

遇到在 markdown 的如下内容:

image

会被转换掉导致显示不出来:

image

Gmeek.py 建议的改动:

        if '<code class="notranslate">Gmeek-html' in post_body:
            post_body = re.sub(r'<code class="notranslate">Gmeek-html(&lt;.*?&gt;)</code>', lambda match: html.unescape(match.group(1)), post_body, flags=re.DOTALL)
Meekdai commented 2 weeks ago

我的建议是你要在文章中说明Gmeek-html的时候不要添加“``”这个符号即可。因为Gmeek-html这是个特定词,一般人根本不会在文章中写。

GJKen commented 2 weeks ago

行吧打扰了, 我自己改 因为我在做记录gmeek的笔记, 所以遇到了这个问题