We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ea172b commit 95eb24eCopy full SHA for 95eb24e
README.md
@@ -927,6 +927,14 @@ and thus no automate multiline wrapping will take place.
927
The wrapping uses the python standard [textwrap.wrap](https://docs.python.org/3/library/textwrap.html#textwrap.wrap)
928
function with default parameters - aside from width.
929
930
+BREAK_LONG_WORDS and BREAK_LONG_WORDS can be used to turn off the TextWrapper break_long_words and break_on_hyphens options.
931
+
932
+```python
933
+import tabulate
934
+tabulate.BREAK_LONG_WORDS = False
935
+tabulate.BREAK_ON_HYPHENS = False
936
+```
937
938
This example demonstrates usage of automatic multiline wrapping, though typically
939
the lines being wrapped would probably be significantly longer than this.
940
0 commit comments