File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
< meta charset ="utf-8 ">
2
2
< meta name ="viewport " content ="width=device-width, initial-scale=1, shrink-to-fit=no ">
3
- < meta name ="description " content ="{{ page.description | default: site.description }} ">
3
+ < meta name ="description " content ="{{ page.description | default: site.description | smartify }} ">
4
4
< meta name ="author " content ="{{ site.authors }} ">
5
5
< meta name ="generator " content ="Jekyll v{{ jekyll.version }} ">
6
6
7
7
< title >
8
8
{%- if page.title -%}
9
- {{ page.title }} · {{ site.title }}
9
+ {{ page.title | smartify }} · {{ site.title | smartify }}
10
10
{%- else -%}
11
- {{ site.title }} · {{ site.description }}
11
+ {{ site.title | smartify }} · {{ site.description | smartify }}
12
12
{%- endif -%}
13
13
</ title >
14
14
Original file line number Diff line number Diff line change 2
2
< meta name ="twitter:card " content ="{% if page.title %}summary{% else %}summary_large_image{% endif %} ">
3
3
< meta name ="twitter:site " content ="@{{ site.twitter }} ">
4
4
< meta name ="twitter:creator " content ="@{{ site.twitter }} ">
5
- < meta name ="twitter:title " content ="{{ page.title | default: site.title }} ">
6
- < meta name ="twitter:description " content ="{{ page.description | default: site.description }} ">
5
+ < meta name ="twitter:title " content ="{{ page.title | default: site.title | smartify }} ">
6
+ < meta name ="twitter:description " content ="{{ page.description | default: site.description | smartify }} ">
7
7
< meta name ="twitter:image " content ="{% if page.title %}{{ site.url | append: site.social_logo_path }}{% else %}{{ site.url | append: site.social_image_path }}{% endif %} ">
8
8
9
9
<!-- Facebook -->
10
10
< meta property ="og:url " content ="{{ site.url | append: page.url }} ">
11
- < meta property ="og:title " content ="{{ page.title | default: site.title }} ">
12
- < meta property ="og:description " content ="{{ page.description | default: site.description }} ">
11
+ < meta property ="og:title " content ="{{ page.title | default: site.title | smartify }} ">
12
+ < meta property ="og:description " content ="{{ page.description | default: site.description | smartify }} ">
13
13
< meta property ="og:type " content ="website ">
14
14
< meta property ="og:image " content ="{{ site.url | replace: 'https://', 'http://' | append: site.social_image_path }} ">
15
15
< meta property ="og:image:secure_url " content ="{{ site.url | append: site.social_image_path }} ">
Original file line number Diff line number Diff line change 25
25
{% endif %}
26
26
27
27
< main class ="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content " role ="main ">
28
- < h1 class ="bd-title " id ="content "> {{ page.title }}</ h1 >
29
- < p class ="bd-lead "> {{ page.description }}</ p >
28
+ < h1 class ="bd-title " id ="content "> {{ page.title | smartify }}</ h1 >
29
+ < p class ="bd-lead "> {{ page.description | smartify }}</ p >
30
30
{% include ads.html %}
31
31
{{ content }}
32
32
</ main >
Original file line number Diff line number Diff line change 4
4
5
5
< div class ="container my-5 ">
6
6
< main class ="bd-content " role ="main ">
7
- < h1 class ="bd-title " id ="content "> {{ page.title }}</ h1 >
8
- < p class ="bd-lead "> {{ page.description }}</ p >
7
+ < h1 class ="bd-title " id ="content "> {{ page.title | smartify }}</ h1 >
8
+ < p class ="bd-lead "> {{ page.description | smartify }}</ p >
9
9
{% include ads.html %}
10
10
{{ content }}
11
11
</ main >
Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ Create responsive tables by adding `.table-responsive{-sm|-md|-lg|-xl}` to any `
586
586
587
587
## Captions
588
588
589
- A ` <caption> ` 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.
589
+ A ` <caption> ` 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.
590
590
591
591
{% example html %}
592
592
<table class =" table " >
You can’t perform that action at this time.
0 commit comments