From f6a511e291f0629046472ecd466a53354df6572d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 6 Nov 2019 06:51:03 +0530 Subject: [PATCH] Add a note about non-reflowable content --- manual/viewer.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/manual/viewer.rst b/manual/viewer.rst index 886e13560d..afe3c604c9 100644 --- a/manual/viewer.rst +++ b/manual/viewer.rst @@ -121,3 +121,16 @@ Copying text and images You can select text and images by dragging the content with your mouse and then right clicking and selecting "Copy" to copy to the clipboard. The copied material can be pasted into another application as plain text and images. + + +Non re-flowable content +-------------------------- + +Some books have very wide content that content be broken up at page boundaries. +For example tables or :code:`
` tags. In such cases, you should switch the
+viewer to *flow mode* by pressing :kbd:`Ctrl+m` to read this content.
+Alternately, you can also add the following CSS to the Styling section of the
+viewer preferences to force the viewer to break up lines of text in
+:code:`
` tags::
+
+    code, pre { white-space: pre-wrap }