Mkdocs Table Reader Plugin Versions Save

MkDocs plugin that enables a markdown tag like {{ read_csv('table.csv') }} to directly insert various table formats into a page

v2.2.2

1 week ago

v2.2.1

3 weeks ago

What's Changed

  • Fixed edge case parsing keyword arguments that are tuples (#62) by @timvink in 404aa9660033b1081c45ebfb8e469ce129c16013

Full Changelog: https://github.com/timvink/mkdocs-table-reader-plugin/compare/v2.2.0...v2.2.1

v2.2.0

3 weeks ago

What's Changed

The example below has an argument with a comma separated list, that would lead to an error before, but now works:

{{ read_csv("file.csv", usecols=['A', 'B']) }}

New Contributors

Full Changelog: https://github.com/timvink/mkdocs-table-reader-plugin/compare/v2.1.0...v2.2.0

v2.1.0

4 months ago

What's Changed

Full Changelog: https://github.com/timvink/mkdocs-table-reader-plugin/compare/v2.0.3...v2.1.0

v2.0.3

7 months ago

Fix regression, df.map is only available from pandas>=2.1.0..

Full Changelog: https://github.com/timvink/mkdocs-table-reader-plugin/compare/v2.0.2...v2.0.3

v2.0.2

7 months ago

Full Changelog:

  • Avoid deprecationwarning of pandas.applymap in pandas >= 2.0.0 (#55)

https://github.com/timvink/mkdocs-table-reader-plugin/compare/v2.0.1...v2.0.2

v2.0.1

11 months ago

What's Changed

Bugfixes:

Documentation:

  • Add guide on using mkdocs-material docer in 355224f967b5f35d91131169493c5ce34ce53479 by @timvink (see #46)
  • Update broken link in README in e99b028f6b8753d8fc1883489ef0318b0dfa7ee8 by @timvink (see #49)
  • Add multiline yaml to examples in e9ca47258dd32a39f465e84f8be9b028ba558bd0 by @timvink (see #47)

New Contributors

Full Changelog: https://github.com/timvink/mkdocs-table-reader-plugin/compare/v2.0...v2.0.1

v2.0

1 year ago

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

v1.2

1 year ago

Added

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

Full Changelog: https://github.com/timvink/mkdocs-table-reader-plugin/compare/v1.1.1...v1.2

v1.1.1

1 year ago

Bugfix release

  • Fix bug where pandas keyword only arguments where not parsed correctly (42909cfba9a92f026ad2137aca01e6dfb73c0edc)

Full Changelog: https://github.com/timvink/mkdocs-table-reader-plugin/compare/v1.1.0...v1.1.1