diff --git a/_includes/header.html b/_includes/header.html
index c2c9deca0c8b..f2f1deff863d 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -1,14 +1,14 @@
-
+
- {{ page.title }}
- {{ page.description }}
+ {{ page.title | smartify }}
+ {{ page.description | smartify }}
{% include ads.html %}
{{ content }}
diff --git a/_layouts/simple.html b/_layouts/simple.html
index 8e7fc5e30b0b..dfd9afd167b9 100644
--- a/_layouts/simple.html
+++ b/_layouts/simple.html
@@ -4,8 +4,8 @@
- {{ page.title }}
- {{ page.description }}
+ {{ page.title | smartify }}
+ {{ page.description | smartify }}
{% include ads.html %}
{{ content }}
diff --git a/docs/4.0/content/tables.md b/docs/4.0/content/tables.md
index 0aefc9ad1fff..865c2b6986eb 100644
--- a/docs/4.0/content/tables.md
+++ b/docs/4.0/content/tables.md
@@ -586,7 +586,7 @@ Create responsive tables by adding `.table-responsive{-sm|-md|-lg|-xl}` to any `
## Captions
-A `
` functions like a heading for a table. It helps users with screen readers to find a table and understand what it’s about and decide if they want to read it.
+A `` functions like a heading for a table. It helps users with screen readers to find a table and understand what it's about and decide if they want to read it.
{% example html %}