2020-08-04 22:22:47 +02:00
|
|
|
|
---
|
2021-12-16 17:08:57 +01:00
|
|
|
|
icon: material/table-edit
|
2020-08-04 22:22:47 +02:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# Data tables
|
|
|
|
|
|
|
|
|
|
Material for MkDocs defines default styles for data tables – an excellent way
|
|
|
|
|
of rendering tabular data in project documentation. Furthermore, customizations
|
2021-10-03 18:29:50 +02:00
|
|
|
|
like [sortable tables] can be achieved with a third-party library and some
|
|
|
|
|
[additional JavaScript].
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
2021-10-03 18:29:50 +02:00
|
|
|
|
[sortable tables]: #sortable-tables
|
|
|
|
|
[additional JavaScript]: ../customization.md#additional-javascript
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
2021-10-03 18:29:50 +02:00
|
|
|
|
This configuration enables Markdown table support, which should normally be
|
|
|
|
|
enabled by default, but to be sure, add the following lines to `mkdocs.yml`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- tables
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
See additional configuration options:
|
|
|
|
|
|
|
|
|
|
- [Tables]
|
|
|
|
|
|
|
|
|
|
[Tables]: ../setup/extensions/python-markdown.md#tables
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
Data tables can be used at any position in your project documentation and can
|
|
|
|
|
contain arbitrary Markdown, including inline code blocks, as well as [icons and
|
2022-01-10 14:31:58 +01:00
|
|
|
|
emojis]:
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
``` markdown title="Data table"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
| Method | Description |
|
|
|
|
|
| ----------- | ------------------------------------ |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
```
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
<div class="result" markdown>
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
| Method | Description |
|
|
|
|
|
| ----------- | ------------------------------------ |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
2021-10-03 18:29:50 +02:00
|
|
|
|
[icons and emojis]: icons-emojis.md
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
### Column alignment
|
|
|
|
|
|
|
|
|
|
If you want to align a specific column to the `left`, `center` or `right`, you
|
2021-10-03 18:29:50 +02:00
|
|
|
|
can use the [regular Markdown syntax] placing `:` characters at the beginning
|
2020-08-04 22:22:47 +02:00
|
|
|
|
and/or end of the divider.
|
|
|
|
|
|
|
|
|
|
=== "Left"
|
|
|
|
|
|
2022-01-11 10:19:33 +01:00
|
|
|
|
``` markdown hl_lines="2" title="Data table, columns aligned to left"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
| Method | Description |
|
|
|
|
|
| :---------- | :----------------------------------- |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
```
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
<div class="result" markdown>
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
| Method | Description |
|
|
|
|
|
| :---------- | :----------------------------------- |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
</div>
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
=== "Center"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
2022-01-11 10:19:33 +01:00
|
|
|
|
``` markdown hl_lines="2" title="Data table, columns centered"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
| Method | Description |
|
|
|
|
|
| :---------: | :----------------------------------: |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
```
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
<div class="result" markdown>
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
| Method | Description |
|
|
|
|
|
| :---------: | :----------------------------------: |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
</div>
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
=== "Right"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
2022-01-11 10:19:33 +01:00
|
|
|
|
``` markdown hl_lines="2" title="Data table, columns aligned to right"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
| Method | Description |
|
|
|
|
|
| ----------: | -----------------------------------: |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
```
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
<div class="result" markdown>
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
| Method | Description |
|
|
|
|
|
| ----------: | -----------------------------------: |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
2021-10-03 18:29:50 +02:00
|
|
|
|
[regular Markdown syntax]: https://www.markdownguide.org/extended-syntax/#tables
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
## Customization
|
|
|
|
|
|
|
|
|
|
### Sortable tables
|
|
|
|
|
|
2021-10-03 18:29:50 +02:00
|
|
|
|
If you want to make data tables sortable, you can add [tablesort], which is
|
2020-08-06 08:59:27 +02:00
|
|
|
|
natively integrated with Material for MkDocs and will also work with [instant
|
2021-10-03 18:29:50 +02:00
|
|
|
|
loading] via [additional JavaScript]:
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
=== ":octicons-file-code-16: `docs/javascripts/tablesort.js`"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
``` js
|
2021-02-22 22:27:30 +01:00
|
|
|
|
document$.subscribe(function() {
|
2021-12-06 23:51:34 +01:00
|
|
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
2020-08-04 22:22:47 +02:00
|
|
|
|
tables.forEach(function(table) {
|
|
|
|
|
new Tablesort(table)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
|
2022-09-11 19:25:40 +02:00
|
|
|
|
=== ":octicons-file-code-16: `mkdocs.yml`"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra_javascript:
|
2022-04-04 09:46:22 +02:00
|
|
|
|
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
|
2021-10-10 12:19:14 +02:00
|
|
|
|
- javascripts/tablesort.js
|
2020-08-04 22:22:47 +02:00
|
|
|
|
```
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
After applying the customization, data tables can be sorted by clicking on a
|
|
|
|
|
column:
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
2022-01-11 10:19:33 +01:00
|
|
|
|
``` markdown title="Data table, columns sortable"
|
2020-08-04 22:22:47 +02:00
|
|
|
|
| Method | Description |
|
|
|
|
|
| ----------- | ------------------------------------ |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
```
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
<div class="result" markdown>
|
2020-08-04 22:22:47 +02:00
|
|
|
|
|
|
|
|
|
| Method | Description |
|
|
|
|
|
| ----------- | ------------------------------------ |
|
|
|
|
|
| `GET` | :material-check: Fetch resource |
|
|
|
|
|
| `PUT` | :material-check-all: Update resource |
|
|
|
|
|
| `DELETE` | :material-close: Delete resource |
|
|
|
|
|
|
2022-01-10 14:31:58 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
Note that [tablesort] provides alternative comparison implementations like
|
|
|
|
|
numbers, filesizes, dates and month names. See the [tablesort documentation]
|
|
|
|
|
[tablesort] for more information.
|
|
|
|
|
|
2022-04-04 09:46:22 +02:00
|
|
|
|
<script src="https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js"></script>
|
2020-08-04 22:22:47 +02:00
|
|
|
|
<script>
|
|
|
|
|
var tables = document.querySelectorAll("article table")
|
|
|
|
|
new Tablesort(tables.item(tables.length - 1));
|
|
|
|
|
</script>
|
|
|
|
|
|
2021-10-03 18:29:50 +02:00
|
|
|
|
[tablesort]: http://tristen.ca/tablesort/demo/
|
|
|
|
|
[instant loading]: ../setup/setting-up-navigation.md#instant-loading
|