1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-07 02:40:52 +00:00

upd: Add regex, files on Embedded Diagram

upd: for Embedded Diagram, add:
-  `regex`
-  `files`
This commit is contained in:
The-Lum 2023-06-14 15:03:59 +02:00 committed by GitHub
parent 74574c4f57
commit 3574987267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,6 +113,12 @@ public class EmbeddedDiagram extends AbstractTextBlock implements Line, Atom {
if (s.equals(EMBEDDED_START + "ebnf"))
return "ebnf";
if (s.equals(EMBEDDED_START + "regex"))
return "regex";
if (s.equals(EMBEDDED_START + "files"))
return "files";
return null;
}
@ -229,4 +235,4 @@ public class EmbeddedDiagram extends AbstractTextBlock implements Line, Atom {
return Arrays.asList(Neutron.create(this));
}
}
}