Skip to content

Commit 6dc1c8a

Browse files
committed
Adding "engine" chen and chronology for plantuml
Adding: > Entity Relationship Diagrams (Chen's notation) > > Chen's Entity Relationship notation, which is commonly used in teaching. See also Information Engineering diagrams. > > Entity Relationship (ER) diagrams are used to model databases at a conceptual level by describing entities, their attributes, and the relationships between them. In addition to basic relationships, PlantUML also supports subclasses and union types. This extended notation is sometimes referred to as Enhanced Entity Relationship (EER) or Extended Entity Relationship notation. and also: > Chronology Diagram > > The Chronology Diagram, adapted from Gantt Chart, is described in natural language, using very simple sentences (subject-verb-complement).
1 parent 61c9177 commit 6dc1c8a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

doc/commands.dox

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3510,7 +3510,8 @@ class Receiver
35103510
Not all diagrams can be created with the PlantUML `@startuml` command but need another
35113511
PlantUML `@start...` command. This will look like `@start<engine>` where currently supported are
35123512
the following `<engine>`s: `uml`, `bpm`, `wire`, `dot`, `ditaa`, `salt`, `math`, `latex`,
3513-
`gantt`, `mindmap`, `wbs`, `yaml`, `creole`, `json`, `flow`, `board`, `git`, `hcl`, `regex`, `ebnf` and `files`.
3513+
`gantt`, `mindmap`, `wbs`, `yaml`, `creole`, `json`, `flow`, `board`, `git`, `hcl`, `regex`, `ebnf`,
3514+
`files`, `chen` and `chronology`.
35143515
By default the `<engine>` is `uml`. The `<engine>` can be specified as an option.
35153516
Also the file to write the resulting image to can be specified by means of an option, see the
35163517
description of the first (optional) argument for details.

src/docnode.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ static const StringUnorderedSet g_plantumlEngine {
7070
"uml", "bpm", "wire", "dot", "ditaa",
7171
"salt", "math", "latex", "gantt", "mindmap",
7272
"wbs", "yaml", "creole", "json", "flow",
73-
"board", "git", "hcl", "regex", "ebnf", "files"
73+
"board", "git", "hcl", "regex", "ebnf",
74+
"files", "chen", "chronology"
7475
};
7576

7677
//---------------------------------------------------------------------------

0 commit comments

Comments
 (0)