aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/prettytable/py3/.dist-info/METADATA
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-08-27 09:19:21 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-08-27 09:26:05 +0300
commitfef8a8d013c3cb51b6b3ed80e1ef5913d9ebe0ef (patch)
tree32c33d1bdfc4ddb3cdf82c0c9fba15708aacaeeb /contrib/python/prettytable/py3/.dist-info/METADATA
parente5779e5f924155a97c86d80c14359136075d1da8 (diff)
downloadydb-fef8a8d013c3cb51b6b3ed80e1ef5913d9ebe0ef.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/python/prettytable/py3/.dist-info/METADATA')
-rw-r--r--contrib/python/prettytable/py3/.dist-info/METADATA12
1 files changed, 11 insertions, 1 deletions
diff --git a/contrib/python/prettytable/py3/.dist-info/METADATA b/contrib/python/prettytable/py3/.dist-info/METADATA
index 47a7f8e093..6df980cfd8 100644
--- a/contrib/python/prettytable/py3/.dist-info/METADATA
+++ b/contrib/python/prettytable/py3/.dist-info/METADATA
@@ -1,6 +1,6 @@
Metadata-Version: 2.3
Name: prettytable
-Version: 3.10.2
+Version: 3.11.0
Summary: A simple Python library for easily displaying tabular data in a visually appealing ASCII table format
Project-URL: Changelog, https://github.com/jazzband/prettytable/releases
Project-URL: Homepage, https://github.com/jazzband/prettytable
@@ -707,6 +707,16 @@ will print:
</table>
```
+#### Setting HTML escaping
+
+By default, PrettyTable will escape the data contained in the header and data fields
+when sending output to HTML. This can be disabled by setting the `escape_header` and
+`escape_data` to false. For example:
+
+```python
+print(table.get_html_string(escape_header=False, escape_data=False))
+```
+
### Miscellaneous things
#### Copying a table