-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new post / 2023-12-17-rendering-csv-as-markdown-table-in-mkdocs-mater…
…ial.md
- Loading branch information
Showing
5 changed files
with
120 additions
and
31 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
107 changes: 107 additions & 0 deletions
107
docs/posts/2023/2023-12-17-rendering-csv-as-markdown-table-in-mkdocs-material.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
--- | ||
authors: | ||
- copdips | ||
categories: | ||
- web | ||
- mkdocs | ||
comments: true | ||
date: | ||
created: 2023-12-17 | ||
description: '' | ||
--- | ||
|
||
# Rendering CSV as Markdown table in Mkdocs Material | ||
|
||
Markdown table is not easy to write in IDE. So I want to write CSV and render it as Markdown table. Previously I used a pre-build script during CICD time to convert CSV to Markdown table. But it's not convenient to preview the result locally. So I want to find a way to render CSV as Markdown table in Mkdocs Material. | ||
|
||
<!-- more --> | ||
|
||
After asked the [pymdown-extensions](https://github.com/facelessuser/pymdown-extensions) maintainer, he gave me the [tips](https://github.com/facelessuser/pymdown-extensions/discussions/2273#discussioncomment-7871897). | ||
|
||
1. In markdown file, use code block with language `csv` to render CSV as Markdown table. | ||
|
||
````markdown | ||
```csv-path | ||
my_csv_file_path.csv | ||
``` | ||
```` | ||
|
||
2. In `mkdocs.yml`, add [custom fence](https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#superfences) for `csv-path` language: | ||
|
||
```yaml | ||
- pymdownx.superfences: | ||
custom_fences: | ||
- name: csv-path | ||
class: csv-path | ||
format: !!python/name:tools.pymdownx_md_render.md_csv_path_render | ||
``` | ||
|
||
3. Install additional pip dependencies: | ||
|
||
```bash | ||
pip install pandas, tabulate | ||
``` | ||
|
||
4. In `tools/pymdownx_md_render.py`, add a new function `md_csv_path_render()` to handle csv code block. Check [here](https://github.com/facelessuser/pymdown-extensions/issues/2240) to see the `pymdownx_md_render.py` example. | ||
`tablefmt="github"` is to set the alignment. | ||
|
||
```python title="tools/pymdownx_md_render.py" | ||
... other imports | ||
import pandas as pd | ||
|
||
... other functions | ||
|
||
def md_csv_path_render( | ||
src="", | ||
language="", | ||
class_name=None, | ||
options=None, md="", | ||
**kwargs): | ||
"""Formatter wrapper.""" | ||
try: | ||
df = pd.read_csv(src) | ||
return markdown.markdown( | ||
df.to_markdown(tablefmt="github", index=False), | ||
extensions=["tables"]) | ||
except Exception: | ||
import traceback | ||
|
||
print(traceback.format_exc()) | ||
raise | ||
``` | ||
|
||
!!! note "We can use other modules (for e.g. [csv2md](https://github.com/lzakharov/csv2md)) than [pandas](https://pandas.pydata.org/docs/index.html) as pandas is a little heavy" | ||
|
||
```python | ||
# no need to pip install pandas, tabulate | ||
# instead pip install csv2md | ||
... | ||
from csv2md.table import Table | ||
... | ||
with open(src, encoding="utf-8") as f: | ||
table = Table.parse_csv(f) | ||
md_table = table.markdown() # (1) | ||
return markdown.markdown(md_table, extensions=["tables"]) | ||
``` | ||
|
||
1. You can set the alignment parameters [here](https://github.com/lzakharov/csv2md/blob/938fbbbe8dce0be393ff3c0915e3fe90c129e552/csv2md/table.py#L11). | ||
|
||
5. To build the mkdocs, must use `python -m mkdocs build` instead of `mkdocs build`. Otherwise, the local `tools` module will not be loaded. | ||
|
||
6. Demo: | ||
|
||
My save the csv file at: csv file at : https://github.com/copdips/copdips.github.io/blob/main/docs/assets/blog_data/test.csv | ||
|
||
My markdown file: | ||
|
||
````markdown | ||
```csv-path | ||
./docs/assets/blog_data/test.csv | ||
``` | ||
```` | ||
|
||
Rendered result: | ||
|
||
```csv-path | ||
./docs/assets/blog_data/test.csv | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,3 @@ mkdocstrings | |
mkdocstrings-python | ||
mkdocs-video | ||
mkdocs-glightbox | ||
pandas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters