<!-- author: Rico Meiner email: rico.meiner@jade-hs.de version: 1.0 language: de import: https://raw.githubusercontent.com/liascript-templates/plantUML/master/README.md --> # PlantUML und mermaid in Liascript Quellen für PlantUML: - [Liascript PlantUML](https://liascript.github.io/course/?https://raw.githubusercontent.com/liaTemplates/plantuml/master/README.md) - [Dokumentation](https://plantuml.com/de/) - ## PlantUML mit Liascript ```text @plantUML @startuml Bob -> Alice : hello @enduml ``` ## PlantUML pur ```plantuml @startuml Bob -> Alice : hello @enduml ``` ## Mindmap in Plantuml (mit Liascript) ```plantuml @startmindmap * SQL ** DDL *** CREATE - Erstellen *** ALTER - Ändern *** DROP - Löschen *** TRUNCATE - Inhalte löschen *** RENAME - Umbenennen ** DML *** INSERT - Einfügen *** SELECT - Abfragen *** UPDATE - Aktualisieren *** DELETE - Löschen ** DCL *** GRANT *** REVOKE ** TCL *** COMMIT *** ROLLBACK @endmindmap ``` ## PlantUML Parameter ```plantuml @startuml ' Aufruf über ' !includeurl https://oer-informatik.gitlab.io/uml/umlzustand/plantuml/umlstate.cfg skinparam style strictuml skinparam shadowing true skinparam DefaultFontName "Lucida Sans Typewriter" skinparam State{ BackgroundColor snow BorderColor DarkSlateBlue DiamondBackgroundColor ghostwhite DiamondBorderColor DarkSlateBlue } skinparam Activity{ DiamondBackgroundColor ghostwhite DiamondBorderColor DarkSlateBlue } skinparam Note{ BorderColor DarkSlateBlue BackgroundColor LightYellow } skinparam ArrowColor DarkSlateBlue skinparam FooterFontColor Lavender skinparam FooterFontSize 8 center footer CC BY 4.0 Hannes Stein \n https://oer-informatik.gitlab.io/uml/umlzustand/uml-zustandsdiagramm-plantuml.html skinparam lineType ortho Bob -> Alice : hello @enduml ```