timvink / mkdocs-table-reader-plugin

MkDocs plugin that enables a markdown tag like {{ read_csv('table.csv') }} to directly insert various table formats into a page
https://timvink.github.io/mkdocs-table-reader-plugin/
MIT License
111 stars 18 forks source link

Add a reader for other formats supported by `pandas` #42

Open timvink opened 1 year ago

timvink commented 1 year ago

Currently, we are missing:

We could add them, but we would need to add an option where you can specify which readers you want to enable, because each one will require a regex to run on all your markdown content (which can slow down your build times).

timvink commented 4 months ago

We now have the option to specify/modify the list of readers, so it's easier to add these additional readers.