Skip to content

Commit 3e12fb0

Browse files
committed
Preparation for 1.9.0 release
1 parent 8f69379 commit 3e12fb0

File tree

6 files changed

+349
-219
lines changed

6 files changed

+349
-219
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
pandoc-plot uses [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
44

5+
## Release 1.9.0
6+
7+
* Added support for [Mermaid](https://mermaid.js.org/), thanks to a contribution by Sanchayan Maity (#74).
8+
59
## Release 1.8.0
610

711
* Added support for [Asymptote](https://asymptote.sourceforge.io/), thanks to a contribution by Michał J. Gajda (#61).

MANUAL.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ To avoid repetition, `pandoc-plot` can be configured using simple YAML
334334
files. Here are **all** the possible parameters:
335335

336336
``` yaml
337+
337338
# This is an example configuration. Everything in this file is optional.
338339
# Please refer to the documentation to know about the parameters herein.
339340
#
@@ -450,16 +451,19 @@ graphviz:
450451
executable: dot
451452
command_line_arguments:
452453

454+
# The possible parameters for the Bokeh toolkit using Python
453455
bokeh:
454456
# preamble: bokeh.py
455457
executable: python
456458
command_line_arguments:
457459

460+
# The possible parameters for the Plots.jl toolkit using Julia
458461
plotsjl:
459462
# preamble: plotsjl.jl
460463
executable: julia
461464
command_line_arguments:
462465

466+
# The possible parameters for the PlantUML toolkit
463467
plantuml:
464468
# preamble: plantuml.txt
465469
executable: java
@@ -469,6 +473,19 @@ plantuml:
469473
# plantuml:
470474
# executable: plantuml
471475
# command_line_arguments:
476+
477+
sageplot:
478+
# preamble: sageplot.sage
479+
executable: sage
480+
command_line_arguments:
481+
482+
d2:
483+
executable: d2
484+
command_line_arguments:
485+
486+
mermaid:
487+
executable: mmdc
488+
command_line_arguments:
472489
```
473490
474491
A file like the above sets the **default** values; you can still override them in documents directly.

0 commit comments

Comments
 (0)