Skip to content

Commit f455c57

Browse files
author
Laurent Franceschetti
committed
Bump to 1.0.1 (production)
1 parent b167c41 commit f455c57

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

mermaid2/plugin.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,11 @@ def on_config(self, config):
185185
# the full config info for the plugin is there
186186
# we copy it into our own variable, to keep it accessible
187187
self._full_config = config
188-
# here we use the standard self.config property:
189-
# (this can get confusing...)
188+
# Storing the arguments to be passed to the Javascript library;
189+
# they are found under `mermaid2:arguments` in the config file:
190190
self._mermaid_args = self.config['arguments']
191+
# Here we used the standard self.config property
192+
# (this can get confusing...)
191193
assert isinstance(self.mermaid_args, dict)
192194
info("Initialization arguments:", self.mermaid_args)
193195
# info on the javascript library:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33

4-
VERSION = '1.0.0-alpha'
4+
VERSION = '1.0.1'
55

66
# required if you want to run tests
77
# pip install 'mkdocs-mermaid2-plugin[test]'

0 commit comments

Comments
 (0)