Manual: enable line wrapping in table cells

This commit is contained in:
m-holger 2022-01-17 12:22:35 +00:00 committed by Jay Berkenbilt
parent f2a3b9cbfc
commit 1efcda1657
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
/* ensure text in table cells wrap */
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: normal;
}

View File

@ -27,4 +27,8 @@ html_theme_options = {
"body_max_width": None,
}
html_logo = '../logo/qpdf.svg'
html_static_path = ['_static']
html_css_files = [
'css/wraptable.css',
]
highlight_language = 'none'