mirror of
https://github.com/octoleo/plantuml.git
synced 2024-12-22 02:49:06 +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:
commit
21461b83fc
@ -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)
|
||||
|
@ -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));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user