Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* The sphinx_rtd_theme forces `white-space: nowrap` on every data-table cell.
For the Supported KIPs table (class `kip-table`) we want every column
except the KIP number/link (column 1) to wrap onto multiple lines. */
.wy-table-responsive table.kip-table td:not(:first-child),
.wy-table-responsive table.kip-table th:not(:first-child) {
white-space: normal;
}
3 changes: 2 additions & 1 deletion docs/compatibility.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Because the kafka server protocol is backwards compatible, kafka-python is
expected to work with newer broker releases as well.

Although kafka-python is tested and expected to work on recent broker versions,
not all features are supported. Please see github open issues for feature tracking.
not all features are supported. See :doc:`kips` for per-feature coverage of
Kafka Improvement Proposals, or the github open issues for feature tracking.
PRs welcome!

kafka-python is tested on python 3.8-3.14.
Expand Down
5 changes: 4 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
#html_static_path = ['_static']
html_static_path = ['_static']

# Custom stylesheets, loaded after the theme's own CSS.
html_css_files = ['custom.css']

# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ See https://docs.python.org/3/howto/logging.html for overview / howto.
install
tests
compatibility
Supported KIPs <kips>
support
license
changelog
Loading
Loading