- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正尝试在我的项目的文本编辑器中添加 markdown 语法高亮显示,但我在让它用户证明,同时保持性能友好方面遇到了一些问题
基本上,我在寻找这个——来自 Visual Studio Code 的 markdown:
我说的是粗体、斜体、列表等的简单突出显示,以指示用户预览其 Markdown 文件时将应用的样式。
我最初为我的项目设置了这个方法(简化了问题并使用颜色使样式更清晰以便调试)
import re
import tkinter
root = tkinter.Tk()
root.title("Markdown Text Editor")
editor = tkinter.Text(root)
editor.pack()
# bind each key Release to the markdown checker function
editor.bind("<KeyRelease>", lambda event : check_markdown(editor.index('insert').split(".")[0]))
# configure markdown styles
editor.tag_config("bold", foreground = "#FF0000") # red for debugging clarity
editor.tag_config("italic", foreground = "#00FF00") # green for debugging clarity
editor.tag_config("bold-italic", foreground = "#0000FF") # blue for debugging clarity
# regex expressions and empty tag legnth
search_expressions = {
# <tag name> <regex expression> <empty tag size>
"italic" : ["\*(.*?)\*", 2],
"bold" : ["\*\*(.*?)\*\*", 4],
"bold-italic" : ["\*\*\*(.*?)\*\*\*", 6],
}
def check_markdown(current_line):
# loop through each tag with the matching regex expression
for tag, expression in search_expressions.items():
# start and end indices for the seach area
start_index, end_index = f"{current_line}.0", f"{current_line}.end"
# remove all tag instances
editor.tag_remove(tag, start_index, end_index)
# while there is still text to search
while 1:
length = tkinter.IntVar()
# get the index of 'tag' that matches 'expression' on the 'current_line'
index = editor.search(expression[0], start_index, count = length, stopindex = end_index, regexp = True)
# break if the expression was not met on the current line
if not index:
break
# else is this tag empty ('**' <- empty italic)
elif length.get() != expression[1]:
# apply the tag to the markdown syntax
editor.tag_add(tag, index, f"{index}+{length.get()}c")
# continue searching after the markdown
start_index = index + f"+{length.get()}c"
# update the display - stops program freezing
root.update_idletasks()
continue
continue
return
root.mainloop()
我推断,通过删除每个 KeyRelease 的所有格式,然后重新扫描当前行,它减少了语法被误解的数量,例如粗体斜体被误解为粗体或斜体,以及标签相互堆叠。这适用于一行中的几个句子,但如果用户在一行中键入大量文本,性能会迅速下降,并且要等待很长时间才能应用样式 - 特别是当涉及许多不同的 markdown 语法时。
我使用 Visual Studio Code 的 markdown 语言突出显示作为比较,它可以在一行中处理更多的语法,然后出于“性能原因”删除突出显示。
我知道每个 keyReleaee 都需要大量的循环,但我发现替代方案要复杂得多,同时并没有真正提高性能。
我想,让我们减少负载吧。我已经测试过每次用户键入星号和 m-dashes 等 Markdown 语法时检查,并对任何已编辑的标签(标签范围内的 key 发布)进行验证。但是用户输入有很多变量需要考虑——比如当文本被粘贴到编辑器中时,因为很难确定某些语法组合可能对周围文档 Markdown 产生什么影响——这些需要检查和验证。
有没有更好更直观的高亮markdown方法我还没有想到?有没有办法大大加快我最初的想法?或者是 python 和 Tkinter 根本无法足够快地完成我想要做的事情。
提前致谢。
最佳答案
如果您不想使用外部库并保持代码简单,使用 re.finditer()
似乎比 Text.search()
更快。
您可以使用单个正则表达式来匹配所有情况:
regexp = re.compile(r"((?P<delimiter>\*{1,3})[^*]+?(?P=delimiter)|(?P<delimiter2>\_{1,3})[^_]+?(?P=delimiter2))")
“定界符”组的长度为您提供了标签,匹配范围为您提供了应用标签的位置。
代码如下:
import re
import tkinter
root = tkinter.Tk()
root.title("Markdown Text Editor")
editor = tkinter.Text(root)
editor.pack()
# bind each key Release to the markdown checker function
editor.bind("<KeyRelease>", lambda event: check_markdown())
# configure markdown styles
editor.tag_config("bold", foreground="#FF0000") # red for debugging clarity
editor.tag_config("italic", foreground="#00FF00") # green for debugging clarity
editor.tag_config("bold-italic", foreground="#0000FF") # blue for debugging clarity
regexp = re.compile(r"((?P<delimiter>\*{1,3})[^*]+?(?P=delimiter)|(?P<delimiter2>\_{1,3})[^_]+?(?P=delimiter2))")
tags = {1: "italic", 2: "bold", 3: "bold-italic"} # the length of the delimiter gives the tag
def check_markdown(start_index="insert linestart", end_index="insert lineend"):
text = editor.get(start_index, end_index)
# remove all tag instances
for tag in tags.values():
editor.tag_remove(tag, start_index, end_index)
# loop through each match and add the corresponding tag
for match in regexp.finditer(text):
groupdict = match.groupdict()
delim = groupdict["delimiter"] # * delimiter
if delim is None:
delim = groupdict["delimiter2"] # _ delimiter
start, end = match.span()
editor.tag_add(tags[len(delim)], f"{start_index}+{start}c", f"{start_index}+{end}c")
return
root.mainloop()
请注意,check_markdown()
仅在 start_index
和 end_index
在同一行时有效,否则您需要拆分文本并执行逐行搜索。
关于python-3.x - Markdown 文本突出显示性能问题 - Tkinter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65192363/
有没有一种方法可以“标记”对象的属性,使它们在反射中“突出”? 例如: class A { int aa, b; string s1, s2; public int AA
我是一名优秀的程序员,十分优秀!