From ddbe9a02ae6ce145f45729305ad10fd377aabd4a Mon Sep 17 00:00:00 2001 From: crossdark Date: Fri, 4 Oct 2024 18:45:48 +0800 Subject: [PATCH] =?UTF-8?q?1.4.2=E9=9A=90=E8=97=8F=E6=96=87=E6=9C=AC?= =?UTF-8?q?=E8=BF=9B=E8=A1=8C=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CrossDown/Core.py | 143 ++++++++++++++++++++++++++++------------------ README.html | 10 ++-- 2 files changed, 92 insertions(+), 61 deletions(-) diff --git a/CrossDown/Core.py b/CrossDown/Core.py index 704b29b..590f96a 100644 --- a/CrossDown/Core.py +++ b/CrossDown/Core.py @@ -1,8 +1,10 @@ +import xml import emoji from markdown.extensions import Extension from markdown.treeprocessors import Treeprocessor -from markdown.inlinepatterns import Pattern +from markdown.inlinepatterns import Pattern as Pattern_ from markdown.preprocessors import Preprocessor +from markdown.inlinepatterns import InlineProcessor from markdown import Markdown from typing import * import re @@ -35,62 +37,92 @@ except ModuleNotFoundError: EXTRA_ABLE = False -class Style(Preprocessor): +class BasicSimple(InlineProcessor): + """ + 可通过简单的正则表达式和HTML标签实现的样式 + """ + def __init__(self, pattern: str, tag: str): + """ + 初始化 + :param pattern: 正则表达式 + :param tag: html标签 + """ + super().__init__(pattern) + self.tag = tag + + def handleMatch(self, match, match_line): + tag = xml.etree.ElementTree.Element(self.tag) # 创建标签 + tag.text = match.group(1) # 获取匹配到的文本并设置为标签的内容 + + return tag, match.start(), match.end() + + +class BasicDifficult(InlineProcessor): + """ + 不能通过简单的正则表达式和HTML标签实现的样式 + """ + def __init__(self, pattern: str, outer_tag: str, inner_tag: str): + """ + 初始化 + :param pattern: 正则表达式 + :param outer_tag: 外层html标签 + :param inner_tag: 内层html标签 + """ + super().__init__(pattern) + self.outer_tag = outer_tag + self.inner_tag = inner_tag + + def handleMatch(self, match, match_line): + outer_tag = xml.etree.ElementTree.Element(self.outer_tag) # 创建外层标签 + inner_tag = xml.etree.ElementTree.SubElement(outer_tag, self.inner_tag) # 创建内层标签 + outer_tag.text = match.group(1) # 设置外层标签文本 + inner_tag.text = match.group(2) # 设置内层标签文本 + + return outer_tag, match.start(), match.end() + + +class BasicPro(InlineProcessor): + """ + 不能通过简单的正则表达式和HTML标签实现的样式 + """ + def __init__(self, pattern: str, tag: str, key: str, value: str): + """ + 初始化 + :param pattern: 正则表达式 + :param tag: html标签 + :param key: html标签属性 + :param value: html标签属性的值 + """ + super().__init__(pattern) + self.tag = tag + self.key = key + self.value = value + + def handleMatch(self, match, match_line): + outer_tag = xml.etree.ElementTree.Element(self.outer_tag) # 创建外层标签 + inner_tag = xml.etree.ElementTree.SubElement(outer_tag, self.inner_tag) # 创建内层标签 + outer_tag.text = match.group(1) # 设置外层标签文本 + inner_tag.text = match.group(2) # 设置内层标签文本 + + return outer_tag, match.start(), match.end() + + +class Basic(Extension): """ 渲染字体样式 """ - @staticmethod - def underline(text): - """ - ~下划线~ - :return: text - """ - return re.sub(r'~([^~\n]+)~', r'\1', text) - - @staticmethod - def strikethrough(text): - """ - ~~删除线~~ - :return: text - """ - return re.sub(r'~~([^~\n]+)~~', r'\1', text) - - @staticmethod - def highlight(text): - """ - ==高亮== - :return: text - """ - return re.sub(r'==([^=\n]+)==', r'\1', text) - - @staticmethod - def up(text): - """ - [在文本的正上方添加一行小文本]^(主要用于标拼音) - :return: text - """ - return re.sub(r'\[(.*?)]\^\((.*?)\)', r'\1\2', text) - - @staticmethod - def hide(text): - """ - [在指定的文本里面隐藏一段文本]-(只有鼠标放在上面才会显示隐藏文本) - :return: text - """ - return re.sub(r'\[(.*?)]-\((.*?)\)', r'\1', text) - - def run(self, lines: List[str]) -> List[str]: - new_line = [] - for line in lines: - line = re.sub(r'~~([^~\n]+)~~', r'\1', line) # ~~删除线~~ - line = re.sub(r'~([^~\n]+)~', r'\1', line) # ~下划线~ - line = re.sub(r'==([^=\n]+)==', r'\1', line) # ==高亮== - line = re.sub(r'\[(.*?)]\^\((.*?)\)', r'\1\2', line) # [在文本的正上方添加一行小文本]^(主要用于标拼音) - line = re.sub(r'\[(.*?)]-\((.*?)\)', r'\1', line) # [在指定的文本里面隐藏一段文本]-(只有鼠标放在上面才会显示隐藏文本) - line = emoji.emojize(line) # 渲染Emoji - new_line.append(line) - return new_line + def extendMarkdown(self, md): + md.registerExtension(self) # 注册扩展 + md.inlinePatterns.register(BasicSimple(r'~~(.*?)~~', tag='s'), 'strikethrough', 0) # ~~删除线~~ + md.inlinePatterns.register(BasicSimple(r'~(.*?)~', tag='u'), 'underline', 0) # ~下划线~ + md.inlinePatterns.register(BasicSimple(r'==(.*?)==', tag='mark'), 'high_light', 0) # ==高亮== + md.inlinePatterns.register(BasicDifficult( + r'\[(.*?)]\^\((.*?)\)', outer_tag='ruby', inner_tag='rt'), 'up', 0 + ) # [在文本的正上方添加一行小文本]^(主要用于标拼音) + md.inlinePatterns.register(BasicDifficult( + r'\[(.*?)]-\((.*?)\)', outer_tag='ruby', inner_tag='rt'), 'hide', 0 + ) # [在指定的文本里面隐藏一段文本]-(只有鼠标放在上面才会显示隐藏文本) class Syllabus(Preprocessor): @@ -146,14 +178,13 @@ class Tag(Treeprocessor): pass # 是普通的无序列表 -class Basic(Extension): +class Basic_(Extension): """ 基本扩展 """ def extendMarkdown(self, md): md.registerExtension(self) # 注册扩展 - md.preprocessors.register(Style(md), 'style', 0) md.preprocessors.register(Syllabus(md), 'syllabus', 0) @@ -176,5 +207,5 @@ class Decorate(Extension): def main(text: str) -> Tuple[str, Dict[str, List[str]]]: - md = Markdown(extensions=[Basic(), More()] + list(Extensions.values()) + [Decorate()], safe_mode=False) + md = Markdown(extensions=[Basic(), Basic_(), More()] + list(Extensions.values()) + [Decorate()], safe_mode=False) return md.convert(text), md.Meta diff --git a/README.html b/README.html index f8d84c7..bc2b785 100644 --- a/README.html +++ b/README.html @@ -55,7 +55,7 @@
  • 1.2.5 删除线
  • 1.2.6 高亮
  • 1.2.7 在文本的正上方添加一行小文本主要用于标拼音
  • -
  • 1.2.8 在指定的文本里面隐藏一段文本
  • +
  • 1.2.8 [在指定的文本里面隐藏一段文本]-(只有鼠标放在上面才会显示隐藏文本)
  • 1.2.9 分割线
  • @@ -132,7 +132,7 @@

    1.2.5 删除线

    1.2.6 高亮

    1.2.7 在文本的正上方添加一行小文本主要用于标拼音

    -

    1.2.8 在指定的文本里面隐藏一段文本

    +

    1.2.8 [在指定的文本里面隐藏一段文本]-(只有鼠标放在上面才会显示隐藏文本)

    1.2.9 分割线



    @@ -207,7 +207,7 @@ -

    引文内添加斜体粗体下划线删除线高亮

    +

    引文内添加斜体粗体~下划线~删除线高亮

    6 提纲

    6.1 提纲号

    @@ -272,8 +272,8 @@

    这是一条警告

    11 Emoji

    -

    🚴

    -

    😃

    +

    :person_biking:

    +

    :grinning_face_with_big_eyes:

    12 扩展语法