diff --git a/docs/developers-guide/workflow.md b/docs/developers-guide/workflow.md index 7373caafcc6363df474f20631b6bc47c304507f5..642d0f6bf44e646c0497b7461ac926d16ab18cd0 100644 --- a/docs/developers-guide/workflow.md +++ b/docs/developers-guide/workflow.md @@ -251,41 +251,37 @@ You have to surround the PlantUML code with code fences, marked as `plantuml` as language identifier. Then they will be rendered into an svg on pages creation. -!!! bug - I tried to put this into an collapsed example admonition, - but the PlantUML diagram get's always placed outside the admonition. - Same applies for a tabbed environment. - -Example: -__code:__ -`````` -```plantuml -queue "write\nmarkdown" as write -queue "commit/push/\nmerge changes" as update -queue "pipeline\ntriggered" as cicd -queue "MkDocs\nMaterial" as MkDocsMat -queue "transpiled HTML\nonline" as deployed - -write -right-> update -update -right-> cicd -cicd -right-> MkDocsMat -MkDocsMat -right-> deployed -``` -`````` - -__result:__ -```plantuml -queue "write\nmarkdown" as write -queue "commit/push/\nmerge changes" as update -queue "pipeline\ntriggered" as cicd -queue "MkDocs\nMaterial" as MkDocsMat -queue "transpiled HTML\nonline" as deployed - -write -right-> update -update -right-> cicd -cicd -right-> MkDocsMat -MkDocsMat -right-> deployed -``` +Example: + +=== "code" + `````` + ```plantuml + queue "write\nmarkdown" as write + queue "commit/push/\nmerge changes" as update + queue "pipeline\ntriggered" as cicd + queue "MkDocs\nMaterial" as MkDocsMat + queue "transpiled HTML\nonline" as deployed + + write -right-> update + update -right-> cicd + cicd -right-> MkDocsMat + MkDocsMat -right-> deployed + ``` + `````` + +=== "result" + ```plantuml + queue "write\nmarkdown" as write + queue "commit/push/\nmerge changes" as update + queue "pipeline\ntriggered" as cicd + queue "MkDocs\nMaterial" as MkDocsMat + queue "transpiled HTML\nonline" as deployed + + write -right-> update + update -right-> cicd + cicd -right-> MkDocsMat + MkDocsMat -right-> deployed + ``` ## Schedule a release