-
Embedding PlantUML in Confluence / Jira / Notion
The team wiki is the biggest consumer of PlantUML diagrams. This is the field guide for getting .puml files rendered into clickable SVG inside Confluence / Jira / Notion, including the s... -
PlantUML 嵌入 Confluence / Jira / Notion 的实战做法
团队 wiki 是 PlantUML 图的最大消费场景。这篇是 Confluence / Jira / Notion 三家平台把 .puml 文件变成可点开 SVG 的落地经验,以及自托管 plantuml 服务在企业网络里的坑。 为什么 wiki 集成这么重要PlantUML 的代码可以在 git 里 review,但评审者不会天天开 git。90% 的阅读发生在 ... -
PlantUML git lifecycle — pre-commit / CI / git-lfs / PR review
PlantUML source + rendered output both live in a git repo. This post distils the end-to-end practice: edit puml → validate → auto-render → commit → CI → PR review → rebase → all smooth. Two kinds... -
PlantUML 在 git 工程里的全生命周期:pre-commit / CI / git-lfs / PR 评审
PlantUML 图源 + 渲染产物都是 git 仓库的一部分。这一篇整理 end-to-end 实践:改 puml → 校验 → 自动渲 → commit → CI → PR 评审 → rebase → 一切顺。 PlantUML 在 git 仓库的两类「文件」1234567project/├── docs/diagrams/ ← source│ ├── auth.p... -
PlantUML with interactive diagrams — react-flow / Vue Flow / vis.js when PlantUML alone isn't enough
PlantUML outputs SVG / PNG / PDF — but no interactivity: can’t drag, can’t highlight, can’t dynamically mutate. That’s “document”, not “tool” — many frontend projects need the latter. Th... -
PlantUML 与交互式图:react-flow / Vue Flow / vis.js 当 PlantUML 不够用时
PlantUML 出 SVG / PNG / PDF,没有交互——不能拖、不能高亮、不能动态改。这是「文档」而不是「工具」——很多前端项目想要后者。这一篇整理 PlantUML 与主流交互式图库的搭配实战。 PlantUML 的定位PlantUML 输出 静态: ✅ SVG(嵌入文档) ✅ PNG(截图) ✅ PDF(打印) ❌ 不能拖动节点 ❌ 不能点击高亮 ❌ ... -
PlantUML information leakage and compliance — source/diagram bidirectional exposure risks
PlantUML diagrams carry both source and rendered output — two-way exposure = two-way leakage. Most teams don’t realise diagrams are a reverse data source for compliance, security, and AI trai... -
PlantUML 信息泄漏与合规:源代码↔图双向暴露的风险与缓解
PlantUML 图同时含「源码」和「图」——双向暴露 = 双向泄漏。但很多人没意识到这是合规、安全、AI 训练的反向数据源——这一篇整理风险清单、缓解方案、合规策略。 「图」比「文字」更容易泄漏比文字更危险的地方写一个博客:「我们使用 192.168.1.10 作为 PostgreSQL 主库」。文字泄漏是「作者写错」才会发生。 但 PlantUML 图里: 12345678... -
PlantUML CLI power user — batch, stdin/stdout, CI, incremental builds
Most people stop at plantuml file.puml — but the command line can do far more than that. This post distils the “power user” play book: batching, CI, watch, pipes, custom pre-processing. The minim... -
PlantUML CLI 高级用法:批量渲染、stdin/stdout、CI 集成、增量构建
多数人只会 plantuml file.puml——但 plantuml 命令行能做到的事比想象的多得多。这一篇整理「脚本小子」级别用法:批量、CI、监控、管道、自定义预处理。 命令行最小知识1plantuml [options] file-or-files 常用选项: 选项 含义 -tsvg / -tpng / -tpdf / -tlatex...