1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-07 02:40:52 +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")) {
return "wire";
}
if (s.equals("{{creole")) {
return "creole";
}
if (s.equals("{{board")) {
return "board";
}
return null;
}