I want integrate Plantuml in Gitea
I've installed a docker image of Gitea https://docs.gitea.io/en-us/installation/install-with-docker/ which is working properly.
To integrate Plantuml in Gitea I'm following this guide: https://docs.gitea.io/en-us/administration/customizing-gitea/. Once done plantuml it's not working: plantuml diagram is not rendered. In fact writing a plantuml script
@startuml
Bob -> Alice : hello
@enduml
in a wiki page I would expect this diagram script rendered but in the wiki page I see only the text of the script.
I've placed
the scripts from here https://gitea.com/davidsvantesson/plantuml-code-highlight in the path
/data/gitea/public
(from the Gites configuration page:GITEA_CUSTOM
is/data/gitea
);and the file
footer.tmpl
in/data/gitea/templates/custom/footer.tmpl
I restarted also the docker image, but nothing changes.
Is the path /data/gitea/public
wrong?
Am I missing something?