Skip to content

Commit

Permalink
Preparation for 1.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Sep 18, 2024
1 parent 8f69379 commit 3e12fb0
Show file tree
Hide file tree
Showing 6 changed files with 349 additions and 219 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## Release 1.9.0

* Added support for [Mermaid](https://mermaid.js.org/), thanks to a contribution by Sanchayan Maity (#74).

## Release 1.8.0

* Added support for [Asymptote](https://asymptote.sourceforge.io/), thanks to a contribution by Michał J. Gajda (#61).
Expand Down
17 changes: 17 additions & 0 deletions MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ To avoid repetition, `pandoc-plot` can be configured using simple YAML
files. Here are **all** the possible parameters:

``` yaml

# This is an example configuration. Everything in this file is optional.
# Please refer to the documentation to know about the parameters herein.
#
Expand Down Expand Up @@ -450,16 +451,19 @@ graphviz:
executable: dot
command_line_arguments:

# The possible parameters for the Bokeh toolkit using Python
bokeh:
# preamble: bokeh.py
executable: python
command_line_arguments:

# The possible parameters for the Plots.jl toolkit using Julia
plotsjl:
# preamble: plotsjl.jl
executable: julia
command_line_arguments:

# The possible parameters for the PlantUML toolkit
plantuml:
# preamble: plantuml.txt
executable: java
Expand All @@ -469,6 +473,19 @@ plantuml:
# plantuml:
# executable: plantuml
# command_line_arguments:

sageplot:
# preamble: sageplot.sage
executable: sage
command_line_arguments:

d2:
executable: d2
command_line_arguments:

mermaid:
executable: mmdc
command_line_arguments:
```
A file like the above sets the **default** values; you can still override them in documents directly.
Expand Down
Loading

0 comments on commit 3e12fb0

Please sign in to comment.