mkdocs-table-reader-plugin icon indicating copy to clipboard operation
mkdocs-table-reader-plugin copied to clipboard

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

Results 8 mkdocs-table-reader-plugin issues
Sort by recently updated
recently updated
newest added

The allow_missing_files configuration is typically used when the creation of the content by mkdocs is more important than the availability of the file. It does not handle malformed files. Can...

@timvink I am the developer of [Mkdocs-Macros](https://github.com/fralau/mkdocs-macros-plugin). I am contacting you since I noticed that you have given thought to the production of [reproducible reports](https://timvink.nl/blog/reproducible-reports-with-mkdocs/). I noticed that several MkDocs...

Currently, we are missing: - `read_sas` - [x] `read_feather` - `read_html` - `read_xml` - `read_hdf` - `read_orc` - `read_parquet` - `read_sas` - `read_spss` - `read_stata` We _could_ add them, but...

enhancement
good first issue

(inspired by [this discussion](https://github.com/squidfunk/mkdocs-material/discussions/3315#discussioncomment-5066920)) Instead of `{{ read_csv('table.csv') }}` we could take inspiration from https://github.com/coddingtonbear/obsidian-csv-table and create a [custom superfences notation](https://facelessuser.github.io/pymdown-extensions/extensions/superfences/#custom-fences) like so: ````md ```table-reader filepath: table.csv ``` ```` We...

enhancement

I'm using this plugin to read data from csv and then js to modify a table matching specific criteria (i.e.: containing Name, Email and Team) to dynamically generate data and...

Hi, not sure if this is documented somewhere and I just missed it, but I can't seem to find a way to output float values with higher precision (Using read_csv...