mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 21:52:56 +08:00
125 lines
3.1 KiB
Python
125 lines
3.1 KiB
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
from typing import Literal
|
||
|
|
|
||
|
|
from pydantic import BaseModel, Field
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"CodeElement",
|
||
|
|
"HeadingElement",
|
||
|
|
"ImageElement",
|
||
|
|
"ListElement",
|
||
|
|
"ListItemElement",
|
||
|
|
"MarkdownData",
|
||
|
|
"MarkdownElement",
|
||
|
|
"QuoteElement",
|
||
|
|
"RawHtmlElement",
|
||
|
|
"TableElement",
|
||
|
|
"TextElement",
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
class MarkdownElement(BaseModel, ABC):
|
||
|
|
@abstractmethod
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
"""Serializes the element to its Markdown string representation."""
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class TextElement(MarkdownElement):
|
||
|
|
text: str
|
||
|
|
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
return self.text
|
||
|
|
|
||
|
|
|
||
|
|
class HeadingElement(MarkdownElement):
|
||
|
|
text: str
|
||
|
|
level: int = Field(..., ge=1, le=6)
|
||
|
|
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
return f"{'#' * self.level} {self.text}"
|
||
|
|
|
||
|
|
|
||
|
|
class ImageElement(MarkdownElement):
|
||
|
|
src: str
|
||
|
|
alt: str = "image"
|
||
|
|
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
return f""
|
||
|
|
|
||
|
|
|
||
|
|
class CodeElement(MarkdownElement):
|
||
|
|
code: str
|
||
|
|
language: str = ""
|
||
|
|
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
return f"```{self.language}\n{self.code}\n```"
|
||
|
|
|
||
|
|
|
||
|
|
class RawHtmlElement(MarkdownElement):
|
||
|
|
html: str
|
||
|
|
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
return self.html
|
||
|
|
|
||
|
|
|
||
|
|
class TableElement(MarkdownElement):
|
||
|
|
headers: list[str]
|
||
|
|
rows: list[list[str]]
|
||
|
|
alignments: list[Literal["left", "center", "right"]] | None = None
|
||
|
|
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
header_row = "| " + " | ".join(self.headers) + " |"
|
||
|
|
|
||
|
|
if self.alignments:
|
||
|
|
align_map = {"left": ":---", "center": ":---:", "right": "---:"}
|
||
|
|
separator_row = (
|
||
|
|
"| "
|
||
|
|
+ " | ".join([align_map.get(a, "---") for a in self.alignments])
|
||
|
|
+ " |"
|
||
|
|
)
|
||
|
|
else:
|
||
|
|
separator_row = "| " + " | ".join(["---"] * len(self.headers)) + " |"
|
||
|
|
|
||
|
|
data_rows = "\n".join(
|
||
|
|
"| " + " | ".join(map(str, row)) + " |" for row in self.rows
|
||
|
|
)
|
||
|
|
return f"{header_row}\n{separator_row}\n{data_rows}"
|
||
|
|
|
||
|
|
|
||
|
|
class ContainerElement(MarkdownElement):
|
||
|
|
content: list[MarkdownElement] = Field(default_factory=list)
|
||
|
|
|
||
|
|
|
||
|
|
class QuoteElement(ContainerElement):
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
inner_md = "\n".join(part.to_markdown() for part in self.content)
|
||
|
|
return "\n".join([f"> {line}" for line in inner_md.split("\n")])
|
||
|
|
|
||
|
|
|
||
|
|
class ListItemElement(ContainerElement):
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
return "\n".join(part.to_markdown() for part in self.content)
|
||
|
|
|
||
|
|
|
||
|
|
class ListElement(ContainerElement):
|
||
|
|
ordered: bool = False
|
||
|
|
|
||
|
|
def to_markdown(self) -> str:
|
||
|
|
lines = []
|
||
|
|
for i, item in enumerate(self.content):
|
||
|
|
if isinstance(item, ListItemElement):
|
||
|
|
prefix = f"{i + 1}." if self.ordered else "*"
|
||
|
|
item_content = item.to_markdown()
|
||
|
|
lines.append(f"{prefix} {item_content}")
|
||
|
|
return "\n".join(lines)
|
||
|
|
|
||
|
|
|
||
|
|
class MarkdownData(BaseModel):
|
||
|
|
"""Markdown转图片的数据模型"""
|
||
|
|
|
||
|
|
style_name: str | None = None
|
||
|
|
markdown: str
|
||
|
|
width: int = 800
|
||
|
|
css_path: str | None = None
|