Releases: timvink/mkdocs-table-reader-plugin
Releases · timvink/mkdocs-table-reader-plugin
table-reader v2.0
Table reader v2 is here!
Major new release! Highlights:
- You can now specify tables paths relative to the markdown table (thanks @kdm9 for help building this)
- New
read_raw()
reader that allows you to insert files directly. This is useful for example when you have markdown tables in separate markdown.md
files. - New option
allow_missing_files
allows you to raise warnings instead of errors when files are missing - Rewrote documentation and added how to guides describing different use cases
- Refactored code and extended unit tests
- Fix bug where tables containing pipe characters (
|
) would break the markdown table (#29) - Fixed various deprecation warnings
Head over to the updated documentation to see the details
table-reader v1.2
table-reader v1.1.1
Bugfix release
- Fix bug where pandas keyword only arguments where not parsed correctly (42909cf)
Full Changelog: v1.1.0...v1.1.1
table-reader v1.1.0
Added
- New option
base_path
, allowing for more flexibility in specifying where your tables are located (either relative to theconfig_dir
where yourmkdocs.yml
is located (default), ordocs_dir
(where yourdocs/
folder is). See documentation for more info. (#26)
Thanks @fotrimzi for input on designing this new feature.
table-reader v1.0.0
Major release 🎉
Added
- You can now pass keyword arguments to
to_markdown()
via the readers, allowing for more table customization (#24) - New, re-written documentation website with more examples
table-reader v0.6.2
Changed
- Dropped explicit support for python
3.6
because it is end of life this month (although plugin will still work on it) and added explicit support including unit testing of python 3.10. See stop using python 3.6
table-reader v0.6.1
table-reader v0.6
Fixed
- Added support for content tabs (#19)
table-reader v0.5
table-reader v0.4.4
Fixes
- Ensure normalized file path to config file #16. Thanks @agjohnson for report & fix