File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11
11
- The "if" means the default is never used (#4955 )
12
12
- For pages without a title, show the site title only once (#4959 )
13
13
- Use ` documents-collection.html ` partial in ` home ` layout.
14
+ - Add Bulgarian translation. [ #5003 ] ( https://github.com/mmistakes/minimal-mistakes/pull/5003 )
14
15
15
16
### Bug Fixes
16
17
19
20
- Fix reset stylesheet overruling ` $doc-font-size ` . [ #4983 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4983 )
20
21
- Fix JavaScript null error on home and splash layouts. [ #4938 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4938 ) , [ #4939 ] ( https://github.com/mmistakes/minimal-mistakes/pull/4939 )
21
22
- Fix bad < ; figure> ; HTML if "alt" contains quotes.
23
+ - Fix extra newline generated in ` _includes/post_pagination.html ` .
22
24
23
25
### Documentation & Maintenance
24
26
Original file line number Diff line number Diff line change 1
1
{% if page.previous or page.next %}
2
2
< nav class ="pagination ">
3
3
{% if page.previous %}
4
- < a href ="{{ page.previous.url | relative_url }} " class ="pagination--pager " title ="{{ page.previous.title | markdownify | strip_html }} "> {{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</ a >
4
+ < a href ="{{ page.previous.url | relative_url }} " class ="pagination--pager " title ="{{ page.previous.title | markdownify | strip_html | strip }} "> {{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</ a >
5
5
{% else %}
6
6
< a href ="# " class ="pagination--pager disabled "> {{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</ a >
7
7
{% endif %}
8
8
{% if page.next %}
9
- < a href ="{{ page.next.url | relative_url }} " class ="pagination--pager " title ="{{ page.next.title | markdownify | strip_html }} "> {{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</ a >
9
+ < a href ="{{ page.next.url | relative_url }} " class ="pagination--pager " title ="{{ page.next.title | markdownify | strip_html | strip }} "> {{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</ a >
10
10
{% else %}
11
11
< a href ="# " class ="pagination--pager disabled "> {{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</ a >
12
12
{% endif %}
13
13
</ nav >
14
- {% endif %}
14
+ {% endif %}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ permalink: "/docs/history/"
5
5
excerpt : Change log of enhancements and bug fixes made to the theme.
6
6
sidebar :
7
7
nav : docs
8
- last_modified_at : ' 2024-10-02T22:57:15 +08:00'
8
+ last_modified_at : ' 2024-11-11T21:31:17 +08:00'
9
9
toc : false
10
10
---
11
11
@@ -26,6 +26,7 @@ toc: false
26
26
- The "if" means the default is never used [ #4955 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4955 )
27
27
- For pages without a title, show the site title only once [ #4959 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4959 )
28
28
- Use ` documents-collection.html ` partial in ` home ` layout.
29
+ - Add Bulgarian translation. [ #5003 ] ( https://github.com/mmistakes/minimal-mistakes/pull/5003 )
29
30
30
31
### Bug Fixes
31
32
@@ -34,6 +35,7 @@ toc: false
34
35
- Fix reset stylesheet overruling ` $doc-font-size ` . [ #4983 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4983 )
35
36
- Fix JavaScript null error on home and splash layouts. [ #4938 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4938 ) , [ #4939 ] ( https://github.com/mmistakes/minimal-mistakes/pull/4939 )
36
37
- Fix bad < ; figure> ; HTML if "alt" contains quotes.
38
+ - Fix extra newline generated in ` _includes/post_pagination.html ` .
37
39
38
40
### Documentation & Maintenance
39
41
You can’t perform that action at this time.
0 commit comments