This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site.git
The following commit(s) were added to refs/heads/main by this push:
new b4efb1d51d Solve the whitespace missing bug (#708)
b4efb1d51d is described below
commit b4efb1d51d3f761374dcc3cb61b1c10b2850c514
Author: Akshay-samsung <[email protected]>
AuthorDate: Tue Dec 6 05:06:44 2022 +0530
Solve the whitespace missing bug (#708)
This commit attempts to resolve this issue:
https://github.com/apache/airflow/issues/24962
When there are more than 2 menu items, the documentation only shows
whitespace after '/' in the current page, not in any parent pages.
---
sphinx_airflow_theme/sphinx_airflow_theme/breadcrumbs.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sphinx_airflow_theme/sphinx_airflow_theme/breadcrumbs.html
b/sphinx_airflow_theme/sphinx_airflow_theme/breadcrumbs.html
index 4e383cdd29..7e211fdfda 100644
--- a/sphinx_airflow_theme/sphinx_airflow_theme/breadcrumbs.html
+++ b/sphinx_airflow_theme/sphinx_airflow_theme/breadcrumbs.html
@@ -33,7 +33,7 @@
{% block breadcrumbs %}
<li class="breadcrumb-item"><a href="{{ pathto(master_doc) }}"
class="icon icon-home"> {{ _('Home') }}</a></li>
{% for doc in parents %}
- <li class="breadcrumb-item"><a href="{{ doc.link|e }}">{{
doc.title }}</a></li>
+ <li class="breadcrumb-item"><a href="{{ doc.link|e }}"> {{
doc.title }}</a></li>
{% endfor %}
<li class="breadcrumb-item"><a href="{{ pagename.split('/')[-1]
}}{{ file_suffix }}"> {{ title }}</a></li>
{% endblock %}