File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ def markdown_convertion(txt):
347
347
348
348
# 在文本中插入一个base64编码的原始文本,以便在复制时能够获得原始文本
349
349
raw_text_encoded = compress_string (txt )
350
- raw_text_node = f'<div class="raw_text" style="display:none">{ raw_text_encoded } </div><div class="message_tail" style="display:none"/ >'
350
+ raw_text_node = f'<div class="raw_text" style="display:none">{ raw_text_encoded } </div><div class="message_tail" style="display:none"></div >'
351
351
suf = raw_text_node + "</div>"
352
352
353
353
# 用于查找数学公式的正则表达式
@@ -407,7 +407,7 @@ def code_block_title_replace_format(match):
407
407
408
408
409
409
def get_last_backticks_indent (text ):
410
- # 从后向前查找最后一个 ```
410
+ # 从后向前查找最后一个 ```
411
411
lines = text .splitlines ()
412
412
for line in reversed (lines ):
413
413
if '```' in line :
You can’t perform that action at this time.
0 commit comments