1
0
mirror of https://github.com/octoleo/plantuml.git synced 2025-01-23 15:18:32 +00:00

mod: add board and creole for Embedded Diagram

mod: Add, for Embedded Diagram:
-  `board`
-  `creole`
This commit is contained in:
The-Lum 2021-11-20 19:55:09 +01:00 committed by GitHub
parent 29e652a3b0
commit db9d000eb7
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;
} }