Andreone / dokuwiki_plantuml

A plugin for Dokuwiki that generates UML graphs from text using PlantUML
http://www.dokuwiki.org/plugin:plantuml
13 stars 20 forks source link

avoid autolink2 substitution #12

Closed joemouth closed 12 years ago

joemouth commented 12 years ago

If you use the plugin autolink2 www.dokuwiki.org/plugin:autolink2, then text in between ... will be substituted to internel DW links.

e.g. "Title linkword "will be substituted to "Title [[:ns1:ns2:page_with_linkword]]"

This makes no sense in the grafical output.

Is there any way to solve this issue?

Many thanks!

Andreone commented 12 years ago

Well, there's nothing I can do into the plantum plugin as autolink tags are out of it's scope. I think you should not put a graph into an autolink section. Close the autolink section before the <uml> tag and reopen an autolink section after the </uml> tag:

    <autolink>
    text
    </autolink>
    <uml>
    graph description
    </uml>
    <autolink>
    rest of the text
    </autolink>