=====Drawing Diagrams==== We've installed a plug-in called [[https://www.dokuwiki.org/plugin:plantumlparser|plantumlparser]] to enable creation of diagrams and gantt charts. The plug-in uses [[http://plantuml.com/|PlantUML]], and and valid PlantUML can be put inside the .....tags. For more detailed use, check the offical [[http://plantuml.com/gantt-diagram|documentation]]. ====Diagram Example==== Alice -> Bob: Authentication Request Bob --> Alice: Authentication Response Alice -> Bob: Another authentication Request Alice <-- Bob: another authentication Response ==== ==== Becomes... Alice -> Bob: Authentication Request Bob --> Alice: Authentication Response Alice -> Bob: Another authentication Request Alice <-- Bob: another authentication Response ====Gantt Example==== To create a gantt chart, use the gantt component. @startgantt [Prototype design] lasts 10 days [Code prototype] lasts 10 days [Write tests] lasts 5 days [Code prototype] starts at [Prototype design]'s end [Write tests] starts at [Code prototype]'s start @endgantt ==== ==== Becomes... @startgantt [Prototype design] lasts 10 days [Code prototype] lasts 10 days [Write tests] lasts 5 days [Code prototype] starts at [Prototype design]'s end [Write tests] starts at [Code prototype]'s start @endgantt ==== ==== We can make it a larger using ''scale'' @startgantt scale 1.5 [Prototype design] lasts 10 days [Code prototype] lasts 10 days [Write tests] lasts 5 days [Code prototype] starts at [Prototype design]'s end [Write tests] starts at [Code prototype]'s start @endgantt ==== @startgantt scale 1.5 [Prototype design] lasts 10 days [Code prototype] lasts 10 days [Write tests] lasts 5 days [Code prototype] starts at [Prototype design]'s end [Write tests] starts at [Code prototype]'s start @endgantt ==== ====