We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plantuml
Currently, only the uml directive is supported. It would be nice if plantuml as a alias to the uml directive could be added.
uml
The main argument for this is support for PlantUML rendering with GitLab in Markdown. It supports PlantUML via:
```plantuml Bob -> Alice : hello Alice -> Bob : hi ```
If you use MyST to use Markdown with sphinx, PlantUML via sphinxcontrib.plantuml only works with a {uml} code fence:
sphinxcontrib.plantuml
{uml}
```{uml} Bob -> Alice : hello Alice -> Bob : hi ```
This is unfortunate because this means you can't use the same file to render both with GitLab and sphinx.
However, if the plantuml directive would be supported, one could set
myst_fence_as_directive = ["plantuml"]
in the sphinx config to support the default GitLab rendering.
The text was updated successfully, but these errors were encountered:
Add plantuml directive as alias to uml directive
8de9bd9
This allows to render PlantUML when using a Markdown parser such as MyST. Closes sphinx-contrib#88.
4b5d2aa
This allows to render PlantUML when using a Markdown parser such as MyST. Closes #88.
Successfully merging a pull request may close this issue.
Currently, only the
uml
directive is supported. It would be nice ifplantuml
as a alias to theuml
directive could be added.The main argument for this is support for PlantUML rendering with GitLab in Markdown. It supports PlantUML via:
If you use MyST to use Markdown with sphinx, PlantUML via
sphinxcontrib.plantuml
only works with a{uml}
code fence:This is unfortunate because this means you can't use the same file to render both with GitLab and sphinx.
However, if the
plantuml
directive would be supported, one could setin the sphinx config to support the default GitLab rendering.
The text was updated successfully, but these errors were encountered: