File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 7
7
- Add RTL Support. [ #4886 ] ( https://github.com/mmistakes/minimal-mistakes/pull/4886 )
8
8
- Add missing Polish translation. [ #4890 ] ( https://github.com/mmistakes/minimal-mistakes/pull/4890 )
9
9
- Rewrite most directions with [ CSS logical properties] ( https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values ) .
10
+ - Remove unnecessary "type" attribute (#4956 )
11
+ - The "if" means the default is never used (#4955 )
12
+ - For pages without a title, show the site title only once (#4959 )
10
13
11
14
### Bug Fixes
12
15
Original file line number Diff line number Diff line change @@ -107,7 +107,10 @@ file "docs/_docs/18-history.md" => "CHANGELOG.md" do |t|
107
107
f . puts ""
108
108
f . puts "{% raw %}"
109
109
# Remove H1
110
- changelog = File . read ( t . prerequisites . first ) . gsub ( /^# [^\n ]*$/m , "" ) . strip
110
+ changelog = File . read ( t . prerequisites . first )
111
+ . gsub ( /^# [^\n ]*$/m , "" )
112
+ . gsub ( /\( #(\d +)\) $/m , "[#\\ 1](https://github.com/mmistakes/minimal-mistakes/issues/\\ 1)" )
113
+ . strip
111
114
f . write changelog
112
115
f . puts ""
113
116
f . puts "{% endraw %}"
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-06-27T21:13:13 +08:00'
8
+ last_modified_at : ' 2024-08-20T17:04:07 +08:00'
9
9
toc : false
10
10
---
11
11
@@ -22,6 +22,9 @@ toc: false
22
22
- Add RTL Support. [ #4886 ] ( https://github.com/mmistakes/minimal-mistakes/pull/4886 )
23
23
- Add missing Polish translation. [ #4890 ] ( https://github.com/mmistakes/minimal-mistakes/pull/4890 )
24
24
- Rewrite most directions with [ CSS logical properties] ( https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values ) .
25
+ - Remove unnecessary "type" attribute [ #4956 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4956 )
26
+ - The "if" means the default is never used [ #4955 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4955 )
27
+ - For pages without a title, show the site title only once [ #4959 ] ( https://github.com/mmistakes/minimal-mistakes/issues/4959 )
25
28
26
29
### Bug Fixes
27
30
You can’t perform that action at this time.
0 commit comments