标签: regex vim markdown
我想使用正则表达式匹配以1-6 #标记开头的降价标题,但是,在markdown文件中,有一些python代码片段,评论以#开头,可能是被错误地视为降价标题。
#
你能找到一个正确解析降价标题的正则表达式吗?例如,我有以下标记片段:
# This is a title ## This is also a title ```python import os # this is a comment, not a title os.system("pause") ```