diff options
author | albert-github <albert.tests@gmail.com> | 2021-04-06 10:50:00 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2021-04-06 10:50:00 (GMT) |
commit | 0dbc0d1c0b58bc06651137cd310a945a1db25151 (patch) | |
tree | 66b870464b6b8026e6547af3a3486e46ba7ff653 /src | |
parent | afa248d63e73886a6f0dc0cdb285d18959a0a963 (diff) | |
download | Doxygen-0dbc0d1c0b58bc06651137cd310a945a1db25151.zip Doxygen-0dbc0d1c0b58bc06651137cd310a945a1db25151.tar.gz Doxygen-0dbc0d1c0b58bc06651137cd310a945a1db25151.tar.bz2 |
Extending startuml with extra figure types
2 more supported exgines / figure types: `board` and `git`
(thanks to: The-Lu, see https://forum.plantuml.net/13557/support-for-the-different-%40start-commands?show=13564#a13564)
Diffstat (limited to 'src')
-rw-r--r-- | src/docparser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp index 1489ef5..7eb49d0 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -81,7 +81,8 @@ static const char *sectionLevelToName[] = static const char *plantumlStart[] = {"uml", "bpm", "wire", "dot", "ditaa", "salt", "math", "latex", "gantt", "mindmap", - "wbs", "yaml", "creole", "json", "flow" }; + "wbs", "yaml", "creole", "json", "flow", + "board", "git"}; //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- |