mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-05 13:29:44 +02:00
* 排除提交文件 * feat(editor): 添加数学公式渲染支持 - 集成 KaTeX 库用于数学公式渲染 - 在编辑器样式中添加数学节点相关 CSS 样式 - 实现 BlockMathExtension 和 InlineMathExtension 两个数学公式扩展 - 为 Markdown 组件添加 remarkMath 和 rehypeKatex 插件支持 - 在 package.json 中添加 katex、remark-math、rehype-katex 依赖 - 更新 pnpm-lock.yaml 文件以包含新的依赖包 - 为只读内容组件添加数学公式渲染功能 - 创建 math.tsx 文件实现数学公式节点的完整功能 - 添加只读内容的数学公式渲染测试用例
61 lines
837 B
Plaintext
61 lines
837 B
Plaintext
node_modules
|
|
dist
|
|
*.log
|
|
.DS_Store
|
|
.envrc
|
|
|
|
# build outputs
|
|
.turbo
|
|
.next
|
|
out
|
|
build
|
|
bin
|
|
dist-electron
|
|
*.tsbuildinfo
|
|
# ...except electron-builder's source resources dir, which holds tracked
|
|
# config files (entitlements, icons) — not build output.
|
|
!apps/desktop/build/
|
|
!apps/desktop/build/**
|
|
|
|
# env
|
|
.env*
|
|
!.env.example
|
|
# Desktop production config is public (backend URL, etc.) — track it so
|
|
# `pnpm package` produces a release-ready build without extra setup.
|
|
!apps/desktop/.env.production
|
|
|
|
# test coverage
|
|
coverage
|
|
|
|
# Go
|
|
server/bin/
|
|
server/tmp/
|
|
server/migrate
|
|
server/daemon
|
|
server/multica
|
|
|
|
# Test artifacts
|
|
test-results/
|
|
apps/web/test-results/
|
|
|
|
# context (agent workspace)
|
|
.context
|
|
|
|
# local settings
|
|
.claude/
|
|
.tool-versions
|
|
|
|
# feature tracking
|
|
_features/
|
|
|
|
# runtime
|
|
*.pid
|
|
|
|
# platform specific
|
|
*.dmg
|
|
*.app
|
|
server/server
|
|
data/
|
|
.kilo
|
|
.idea
|