Commit 1efcda16571ef41363549273499ab65642fb66cb

Authored by m-holger
Committed by Jay Berkenbilt
1 parent f2a3b9cb

Manual: enable line wrapping in table cells

manual/_static/css/wraptable.css 0 → 100644
  1 +/* ensure text in table cells wrap */
  2 +.wy-table-responsive table td, .wy-table-responsive table th {
  3 + white-space: normal;
  4 +}
... ...
manual/conf.py
... ... @@ -27,4 +27,8 @@ html_theme_options = {
27 27 "body_max_width": None,
28 28 }
29 29 html_logo = '../logo/qpdf.svg'
  30 +html_static_path = ['_static']
  31 +html_css_files = [
  32 + 'css/wraptable.css',
  33 +]
30 34 highlight_language = 'none'
... ...