From 4cedf1c603388572c4cc00e9101f0f6193833b93 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Mon, 27 Nov 2023 22:51:13 +0000 Subject: [PATCH] Docs formatting tweaks --- docs/extra.css | 6 ++++++ docs/options.md | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/extra.css b/docs/extra.css index eac0a193..232ca2c7 100644 --- a/docs/extra.css +++ b/docs/extra.css @@ -315,3 +315,9 @@ h1, h2, h3, h4, h5, h6 { .wy-menu-vertical li.current a { } + +/* word wrap in table cells */ +.wy-table-responsive table td, .wy-table-responsive table th { + white-space: normal; + line-height: 1.4; +} diff --git a/docs/options.md b/docs/options.md index f1340e42..3acf82b0 100644 --- a/docs/options.md +++ b/docs/options.md @@ -1084,7 +1084,7 @@ Options can be supplied after the name. | Option name | Description |---|--- | `create_args` | Space-separated strings, which are passed to the container engine on the command line when it's creating the container. If you want to include spaces inside a parameter, use shell-style quoting. -| `disable_host_mount` | By default, cibuildwheel will mount the root of the host filesystem as a volume at `/host` in the container. If this is undesirable, pass `true` to this option. +| `disable_host_mount` | By default, cibuildwheel will mount the root of the host filesystem as a volume at `/host` in the container. To disable the host mount, pass `true` to this option. !!! tip