From 49232ecf52e550cc168411c8e1303ac23c702000 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Wed, 23 Oct 2024 21:56:35 +0200 Subject: [PATCH] Improve styling of tables, cosmetics --- docs/User-Guide_Autoconfig.md | 2 +- docs/css/armbian-extra.css | 7 +++++++ mkdocs.yml | 3 +++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 docs/css/armbian-extra.css diff --git a/docs/User-Guide_Autoconfig.md b/docs/User-Guide_Autoconfig.md index e76a24a2..3ec661ce 100644 --- a/docs/User-Guide_Autoconfig.md +++ b/docs/User-Guide_Autoconfig.md @@ -24,7 +24,7 @@ PRESET_CONFIGURATION="http://path/to/config/file" - For fully-unattended setup, specify all values | Configuration directive | `[default]` \| `option` | Description: | -| :---------------------- | :--------------: | -----------: | +| :---------------------- | :-------------- | :----------- | | `PRESET_CONFIGURATION` | `http://path/to/config/file` | See [Loading a remote config](#loading-a-remote-config) | | `PRESET_NET_CHANGE_DEFAULTS` | `[0]` \| `1` | Change default network settings
if unset, **no network changes will be applied** | | `PRESET_NET_ETHERNET_ENABLED` | `0` \| `1` | Enable Ethernet, ignored if WiFi enabled | diff --git a/docs/css/armbian-extra.css b/docs/css/armbian-extra.css new file mode 100644 index 00000000..cbc902c4 --- /dev/null +++ b/docs/css/armbian-extra.css @@ -0,0 +1,7 @@ +.md-typeset__table { + min-width: 100%; +} + +.md-typeset table:not([class]) { + display: table; +} diff --git a/mkdocs.yml b/mkdocs.yml index 6b222cbc..369c5afa 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -35,6 +35,9 @@ theme: - navigation.top - toc.integrate +extra_css: + - css/armbian-extra.css + extra: analytics: provider: google