Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/halo-sigs/plugin-katex
为默认编辑器和文章渲染提供 KaTeX 支持。
https://github.com/halo-sigs/plugin-katex
halo halo-plugin
Last synced: 1 day ago
JSON representation
为默认编辑器和文章渲染提供 KaTeX 支持。
- Host: GitHub
- URL: https://github.com/halo-sigs/plugin-katex
- Owner: halo-sigs
- License: gpl-3.0
- Created: 2023-06-20T04:13:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-05T08:34:38.000Z (4 months ago)
- Last Synced: 2024-08-02T06:17:08.327Z (3 months ago)
- Topics: halo, halo-plugin
- Language: TypeScript
- Homepage: https://halo.run/store/apps/app-ISCsX
- Size: 223 KB
- Stars: 7
- Watchers: 3
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-halo - plugin-katex - 为默认编辑器和文章渲染提供 KaTeX 支持 (Halo 2.0 / 插件)
- awesome-tiptap - KaTeX Block by Halo - Provides KaTeX support
- awesome-tiptap - KaTeX Block by Halo - Provides KaTeX support
README
# plugin-katex
为默认编辑器和文章渲染提供 KaTeX 支持。
![KaTeX](./images/plugin-katex-screenshot.webp)
## 使用方式
1. 下载,目前提供以下两个下载方式:
- GitHub Releases:访问 [Releases](https://github.com/halo-sigs/plugin-katex/releases) 下载 Assets 中的 JAR 文件。
- Halo 应用市场:。
2. 安装,插件安装和更新方式可参考:。## 用法说明
### 默认编辑器
1. 方式一:在默认编辑器中,使用 `$` 开头和结尾的语句将会被渲染为 KaTeX 行内公式,输入 `$$` 并回车可以插入 KaTeX 块级公式。
2. 方式二:在编辑器顶部工具栏的工具箱中点击 **KaTeX 块级公式** 或者 **KaTeX 行内公式** 即可插入块级公式和行内公式。
3. 方式三:在指令菜单(/)中选择 **KaTeX 块级公式** 或者 **KaTeX 行内公式** 即可插入块级公式和行内公式。### 文章页渲染公式
此插件安装之后,文章页使用 KaTeX.js 渲染公式,插件支持 2 个配置项。
1. 行内公式 CSS 选择器
CSS Selector 语法,用来查找渲染的行内公式 Dom。
默认值为:`[math-inline]`(本插件扩展默认编辑器生成的行内公式 Dom),如需兼容其他编辑器,则设置为相应的 Selector 即可。
已知编辑器:
[ByteMD](https://www.halo.run/store/apps/app-HTyhC):`.math-inline`
[StackEdit](https://www.halo.run/store/apps/app-hDXMG):`.katex--inline`
如同时使用多个编辑器,CSS Selector 之间用 `,` 隔开即可。
如:`[math-inline],.math-inline,.katex--inline`
2. 块级公式 CSS 选择器
CSS Selector 语法,用来查找渲染的块级公式 Dom。
默认值为:`[math-display]`
已知编辑器:
[ByteMD](https://www.halo.run/store/apps/app-HTyhC):`.math-display`
[StackEdit](https://www.halo.run/store/apps/app-hDXMG):`.katex--display`
## 开发环境
```bash
git clone [email protected]:halo-sigs/plugin-katex.git# 或者当你 fork 之后
git clone [email protected]:{your_github_id}/plugin-katex.git
``````bash
cd path/to/plugin-katex
``````bash
# macOS / Linux
./gradlew pnpmInstall# Windows
./gradlew.bat pnpmInstall
``````bash
# macOS / Linux
./gradlew build# Windows
./gradlew.bat build
```修改 Halo 配置文件:
```yaml
halo:
plugin:
runtime-mode: development
classes-directories:
- "build/classes"
- "build/resources"
lib-directories:
- "libs"
fixedPluginPath:
- "/path/to/plugin-katex"
```