1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-28 06:00:49 +00:00

Merge pull request #1457 from The-Lum/FilesTree

upd: add `regex`, `files` on Embedded Diagram; Add `regex` diagram link on Readme
This commit is contained in:
PlantUML 2023-06-14 16:05:12 +02:00 committed by GitHub
commit 21461b83fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -42,6 +42,7 @@ The following non-UML diagrams are also supported:
* [JSON data](http://plantuml.com/json)
* [YAML data](http://plantuml.com/yaml)
* [Extended Backus-Naur Form (EBNF) diagram](http://plantuml.com/ebnf)
* [Regular Expression (regex) diagram](http://plantuml.com/regex)
* [Network diagram (nwdiag)](http://plantuml.com/nwdiag)
* [Wireframe graphical interface or UI mockups (salt)](http://plantuml.com/salt)
* [Archimate diagram](http://plantuml.com/archimate-diagram)

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));
}
}
}