From 9dfb61c829abb4a41faa07e0fc9b8356781f8e4f Mon Sep 17 00:00:00 2001 From: "Sterling G. Baird" Date: Tue, 13 Feb 2024 10:25:48 -0500 Subject: [PATCH] wrapping of table --- docs/_static/css/custom.css | 3 +++ docs/conf.py | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 docs/_static/css/custom.css diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css new file mode 100644 index 0000000..25a4aa1 --- /dev/null +++ b/docs/_static/css/custom.css @@ -0,0 +1,3 @@ +.wy-table-responsive table td, .wy-table-responsive table th { + white-space: inherit; +} diff --git a/docs/conf.py b/docs/conf.py index bb53fdf..63c46b9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -205,9 +205,15 @@ # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] +# These paths are either relative to html_static_path +# or fully qualified paths (eg. https://...) +html_css_files = [ + "css/custom.css", +] + # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -# html_last_updated_fmt = '%b %d, %Y' +html_last_updated_fmt = "%b %d, %Y" # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities.