Releases: timvink/mkdocs-charts-plugin
Releases · timvink/mkdocs-charts-plugin
mkdocs-charts-plugin v0.0.12
What's Changed
This release has better support light/dark modes. You can specify the vegalite theme to use for light, and/or dark mode. In addition, you can specify which mkdocs-material
themes qualify as light and which as dark. This way, the charts will properly change light/dark mode, even when using custom mkdocs-material themes.
The vegalite_theme
option has been replaced with the vegalite_theme_light
option. A new integrations
option section lets you specify the mkdocs-material theme(s) that correspond with light and dark. Here are the new default settings:
# mkdocs.yml
plugins:
- charts:
vega_theme_light: default
vega_theme_dark: dark
integrations:
mkdocs_material:
themes_light:
- default
themes_dark:
- slate
Pull requests:
- Add support for custom light/dark schemes by @sisp in #23
- Add new option vega_theme_light by @timvink in #25
New Contributors
Full Changelog: v0.0.11...v0.0.12
mkdocs-charts-plugin v0.0.11
Full Changelog: v0.0.10...v0.0.11
mkdocs-charts-plugin v0.0.10
mkdocs-charts-plugin v0.0.9
What's Changed
- Fix non-standard homepage location by @ewellinger in #15
New Contributors
- @ewellinger made their first contribution in #15
Full Changelog: v0.0.8...v0.0.9
mkdocs-charts-plugin v0.0.8
mkdocs-charts-plugin v0.0.7
Changed
- Invalid JSON schema will now raise a SuperFencesException instead of silently failing
mkdocs-charts-plugin v0.0.6
Changed
- Dropped explicit support for python
3.6
, added3.10
. See stop using python 3.6.
mkdocs-charts-plugin v0.0.5
Fixed
- Bug where plugin would break if pymdownx.superfences was set but not a custom fence (31f120d)
Added
- Improved error message when missing javascript dependencies (cdc6e4c)
- Refactor plugin event for mkdocs-print-site-plugin compatibility (2cabf65)
mkdocs-charts-plugin v0.0.4
mkdocs-charts-plugin v0.0.3
Added
- Support for dark mode toggle (#3)