Skip to content

Releases: timvink/mkdocs-table-reader-plugin

table-reader v2.0

30 Jan 13:24
Compare
Choose a tag to compare

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

02 Nov 20:39
Compare
Choose a tag to compare

Added

  • New reader read_json() for reading tables in json format.

Full Changelog: v1.1.1...v1.2

table-reader v1.1.1

30 Oct 19:06
Compare
Choose a tag to compare

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

13 Jul 08:46
908c8a2
Compare
Choose a tag to compare

Added

  • New option base_path, allowing for more flexibility in specifying where your tables are located (either relative to the config_dir where your mkdocs.yml is located (default), or docs_dir (where your docs/ folder is). See documentation for more info. (#26)

Thanks @fotrimzi for input on designing this new feature.

table-reader v1.0.0

21 Jan 21:04
Compare
Choose a tag to compare

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

15 Dec 08:07
Compare
Choose a tag to compare

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

18 Nov 10:50
758bf01
Compare
Choose a tag to compare

Added

  • Error message when configured in wrong order together with mkdocs-markdownextradata-plugin. Thanks @G3rtjan ! (#20)

Changed

  • Syntax with missing or multiple spaces now allowed (e.g. {{read_csv()}} or {{ read_csv() }}). (#22)

table-reader v0.6

17 Jun 10:42
Compare
Choose a tag to compare

Fixed

  • Added support for content tabs (#19)

table-reader v0.5

12 Apr 07:57
Compare
Choose a tag to compare

Added

  • New {{ read_yaml() }} table reader, thanks to @nejch (#18)

table-reader v0.4.4

26 Jan 08:57
Compare
Choose a tag to compare

Fixes

  • Ensure normalized file path to config file #16. Thanks @agjohnson for report & fix