Merge pull request #1669 from The-Lum/PatchBranch

Improve `Chronology diagram` management
This commit is contained in:
PlantUML 2024-02-02 23:44:52 +01:00 committed by GitHub
commit ad383d2dc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 0 deletions

View File

@ -56,6 +56,7 @@ PlantUML is a component that allows you to create various UML diagrams through s
- [SDL (Specification and Description Language)](http://plantuml.com/activity-diagram-beta#sdl)
- [Ditaa diagram](http://plantuml.com/ditaa)
- [Gantt diagram](http://plantuml.com/gantt-diagram)
- [Chronology diagram](http://plantuml.com/chronology-diagram)
- [MindMap diagram](http://plantuml.com/mindmap-diagram)
- [WBS (Work Breakdown Structure)](http://plantuml.com/wbs-diagram)
- [Mathematical Notations (AsciiMath, JLaTeXMath)](http://plantuml.com/ascii-math)

View File

@ -119,6 +119,9 @@ public class EmbeddedDiagram extends AbstractTextBlock implements Line, Atom {
if (s.equals(EMBEDDED_START + "files"))
return "files";
if (s.equals(EMBEDDED_START + "chronology"))
return "chronology";
return null;
}

View File

@ -123,6 +123,7 @@ public class LanguageDescriptor {
keyword.add("@startebnf");
keyword.add("@startregex");
keyword.add("@startfiles");
keyword.add("@startchronology");
keyword.add("@endwire");
keyword.add("@endbpm");
keyword.add("@enduml");
@ -150,6 +151,7 @@ public class LanguageDescriptor {
keyword.add("@endebnf");
keyword.add("@endregex");
keyword.add("@endfiles");
keyword.add("@endchronology");
keyword.add("as");
keyword.add("also");
keyword.add("autonumber");