Skip to content

Releases: timvink/mkdocs-table-reader-plugin

table-reader v3.1.0

29 Aug 14:07
14a6c4a
Compare
Choose a tag to compare

Full Changelog: v3.0.1...v3.1.0

table-reader v3.0.1

15 Aug 14:01
5dcaeca
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.0...v3.0.1

table-reader v3.0.0

15 Aug 12:16
9f6b419
Compare
Choose a tag to compare

What's Changed

  • table-reader is now compatible with mkdocs-macros-plugin, which means you can dynamically insert tables using jinja2 syntax.
  • The base_path option has now been deprecated (and will log a warning when used). Now by default, the config_dir (path to your mkdocs.yml file) and docs_dir (path to your docs/ dir) will always be searched when looking for a table file path
  • The search_page_directory option has now been deprecated (and will log a warning when used). The markdown page's source file directory will always be searched when looking for a table file.

Breaking changes / upgrading guide

  • Remove base_path and search_page_directory from your mkdocs.yml options.
# mkdocs.yml
plugins:
-    - table-reader:
-        base_path: docs_dir
-        search_page_directory: True
+    - table-reader
  • In your mkdocs.yml file, the macros plugin should be defined before the table-reader plugin (previously this was after)
# mkdocs.yml
plugins:
-    - table-reader
-    - macros
+    - macros
+    - table-reader

Full Changelog: v2.2.2...v3.0.0

table-reader v2.2.2

20 May 11:18
0b6201d
Compare
Choose a tag to compare

What's Changed

  • Bugfix: reading tables with non-string headers now supported (#63) by @timvink in 0b6201d

Full Changelog: v2.2.1...v2.2.2

table-reader v2.2.1

07 May 09:19
9f5c1aa
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.2.0...v2.2.1

table-reader v2.2.0

04 May 08:10
170e82c
Compare
Choose a tag to compare

What's Changed

  • Create schema.json file to support auto-completion in IDEs by @blakenetz in #58
  • Add codespell support (config, workflow to detect/not fix) and make it fix few typos by @yarikoptic in #59
  • New args/kwargs string parsing, that now supports passing lists to arguments. Fixed by @timvink in 170e82c

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: v2.1.0...v2.2.0

table-reader v2.1.0

30 Jan 12:15
9028c75
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.3...v2.1.0

table-reader v2.0.3

11 Oct 12:15
368388b
Compare
Choose a tag to compare

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

Full Changelog: v2.0.2...v2.0.3

table-reader v2.0.2

11 Oct 11:22
aa376e3
Compare
Choose a tag to compare

Full Changelog:

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

v2.0.1...v2.0.2

table-reader v2.0.1

09 Jun 13:59
Compare
Choose a tag to compare

What's Changed

Bugfixes:

  • Bugfix in kwargs_in_func where arguments parsing sometimes lead to errors by @BartvanWoesik in #51

Documentation:

New Contributors

Full Changelog: v2.0...v2.0.1