mikitex70 / plantuml-markdown

PlantUML plugin for Python-Markdown
BSD 2-Clause "Simplified" License
196 stars 55 forks source link

'/' in 'alt' or 'title' prevents diagram from rendering #36

Closed jean closed 4 years ago

jean commented 4 years ago

This diagram renders as preformatted text:

```plantuml format="svg" classes="uml" alt="Client/Server" title="Client/Server"
class Foo
```

This one renders fine:

```plantuml format="svg" classes="uml" alt="Client Server" title="Client Server"
class Foo
```

(This is using the PlantUML service for rendering.)

mikitex70 commented 4 years ago

Fixed, do a pip install plantuml_markdown to pull version 3.1.4. Thanks for reporting.