Skip to content

Releases: mikitex70/plantuml-markdown

Ffixed error with external plantuml server

25 Feb 17:40
Compare
Choose a tag to compare

When using an external PlantUML server to render diagrams, if a diagram has syntax errors and the remote server returns an error code (HTTP >= 400), and exception was thrown immediately stopping markdown parsing.
Now the error is intercepted and logged, and markdown can continue its work.

Removed unnecessary uuid lib requirement

18 Dec 16:45
Compare
Choose a tag to compare

This is a minor fix, remove the unnecessary lib uuid requirement .
Thanks to @borystua pointing it out (see #60).

Added support for image maps

23 Nov 17:13
Compare
Choose a tag to compare

When the output format is png and the diagrams contains an hyperlink, a map tag and related area tags are added to the output so the links are active.

Forced utf-8 encoding for source files

29 Aug 19:07
Compare
Choose a tag to compare

Now the character encoding for external files (referenced by the source parameter) is utf-8, even in Windows.
Use the encoding configuration option to force a different character encoding.

Fixed multiple mixed code blocks

28 Oct 19:09
Compare
Choose a tag to compare

Fixed parsing of mixed fenced_code and plantuml_markdown blocks in
the same document (see #45).

Minor changes

23 Aug 10:05
Compare
Choose a tag to compare
  • fixed UML source diagram inside fenced code (refs #45)
  • external source diagram through source option is now prepended to the inline code (both are kept) (refs #47)

Added support including diagrams from files

18 Jun 18:05
Compare
Choose a tag to compare

Now is possible to include diagram code from external files.
Fixed also a minor bug with the object HTML tag.

Removed annoying debug messages

04 Mar 17:47
Compare
Choose a tag to compare

Removed a forgotten instruction that was setting the log level to debug, causing some debug messages to be written in the output.

Tested with Python 3.8

13 Dec 17:42
Compare
Choose a tag to compare

Fixed the failing tests.

Added plugin priority configuration

08 Dec 16:09
Compare
Choose a tag to compare

Added the priority plugin confiiguration which can be used to fine tuning the plugin execution order.