1
0
mirror of https://github.com/octoleo/plantuml.git synced 2025-01-05 16:12:16 +00:00

Merge pull request #795 from The-Lum/ImproveEmbeddedDiagram

mod: add `board` and `creole` for Embedded Diagram
This commit is contained in:
PlantUML 2021-11-20 20:11:25 +01:00 committed by GitHub
commit 444709e815
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,6 +89,12 @@ public class EmbeddedDiagram implements CharSequence {
if (s.equals("{{wire")) { if (s.equals("{{wire")) {
return "wire"; return "wire";
} }
if (s.equals("{{creole")) {
return "creole";
}
if (s.equals("{{board")) {
return "board";
}
return null; return null;
} }