diff --git a/_data/navigation.yml b/_data/navigation.yml
index d87aed3b..20b9b662 100644
--- a/_data/navigation.yml
+++ b/_data/navigation.yml
@@ -1249,6 +1249,6 @@ doc-guide-nav:
- title: "Self made helper tools"
url: /doc-guide/02_Tools/01_Self_made_tools/README
subnav:
- - title: "Self made tools testing"
+ - title: "This's a self made tools testing page of {{ site.title }}"
url: /doc-guide/02_Tools/01_Self_made_tools/01_Tests/README
subnav:
diff --git a/_includes/breadcrumbs.html b/_includes/breadcrumbs.html
index 75c032a4..1cdcadf4 100644
--- a/_includes/breadcrumbs.html
+++ b/_includes/breadcrumbs.html
@@ -26,7 +26,7 @@
{{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}
{% endif %}
{% if forloop.last %}
-
{{ page.title }}
+ {{ page.title | liquify | markdownify | strip_html | strip_newlines }}
{% else %}
{% assign i = i | plus: 1 %}
diff --git a/_includes/nav_list_add b/_includes/nav_list_add
index 363811c0..94b43985 100644
--- a/_includes/nav_list_add
+++ b/_includes/nav_list_add
@@ -20,7 +20,7 @@
{% endif %}
@@ -45,9 +45,9 @@
{% comment %} {% assign debugInfo = "NO subnav(" | append: nav.subnav | append: "), levelIndex: " | append: levelIndex | append: ", levelDepth: " | append: levelDepth | append: ", titleStyle: " | append: titleStyle %}{{ debugInfo }}
{% endcomment %}
{% if nav.url %}
- {{ nav.title }}
+ {{ nav.title | liquify | markdownify | strip_html | strip_newlines }}
{% else %}
- {{ nav.title }}
+ {{ nav.title | liquify | markdownify | strip_html | strip_newlines }}
{% endif %}
{% endif %}
diff --git a/_includes/page__hero.html b/_includes/page__hero.html
index dd1c26fb..32434b81 100644
--- a/_includes/page__hero.html
+++ b/_includes/page__hero.html
@@ -13,7 +13,7 @@
{% if page.header.image_description %}
{% assign image_description = page.header.image_description %}
{% else %}
- {% assign image_description = page.title %}
+ {% assign image_description = page.title | liquify | markdownify | strip_html | strip_newlines %}
{% endif %}
{% assign image_description = image_description | markdownify | strip_html | strip_newlines | escape_once %}
@@ -27,7 +27,7 @@
{% if paginator and site.paginate_show_page_num %}
{{ site.title }}{% unless paginator.page == 1 %} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}
{% else %}
- {{ page.title | default: site.title | markdownify | remove: "
" | remove: "
" }}
+ {{ page.title | default: site.title | liquify | markdownify | remove: "" | remove: "
" }}
{% endif %}
{% if page.tagline %}
diff --git a/_includes/page_pagination.html b/_includes/page_pagination.html
index bd4a5b0f..15a4037c 100644
--- a/_includes/page_pagination.html
+++ b/_includes/page_pagination.html
@@ -14,17 +14,17 @@
{% assign prevurl = prev.url %}
{% assign prevtitle = prev.title %}
- {% comment %}prevtitle = {{ prevtitle }}
{% endcomment %}
+ {% comment %}prevtitle = {{ prevtitle | liquify | markdownify | strip_html | strip_newlines }}
{% endcomment %}
{% endunless %}
- {% comment %}pagetitle = {{ page.title }}
{% endcomment %}
+ {% comment %}pagetitle = {{ page.title | liquify | markdownify | strip_html | strip_newlines }}
{% endcomment %}
{% unless forloop.last %}
{% assign next = document[forloop.index] %}
{% assign nexturl = next.url %}
{% assign nexttitle = next.title %}
- {% comment %}nexttitle = {{ nexttitle }}
{% endcomment %}
+ {% comment %}nexttitle = {{ nexttitle | liquify | markdownify | strip_html | strip_newlines }}
{% endcomment %}
{% endunless %}
{% endif %}
@@ -45,7 +45,7 @@
@@ -60,7 +60,7 @@