Skip to content

Commit 9c36ee1

Browse files
committed
fix: dir lang attribute was missing on all templates
1 parent 3828dc2 commit 9c36ee1

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Ignore All
22
*
3+
# Don't ignore Task file
4+
!TaskFile.yml
35
# Don't ignore the following files
46
!.gitignore
57
!.gitattributes

data/combo/theme/combo/pages/templates/howto-index.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<html lang="{{lang}}">
1+
<html lang="{{lang}}" dir="{{dir}}">
22
<head>
33
<title>{{title}}</title>
44
{{>head-partial}}

data/combo/theme/combo/pages/templates/howto-item.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<html lang="{{lang}}">
1+
<html lang="{{lang}}" dir="{{dir}}">
22
<head>
33
<title>{{title}}</title>
44
{{> head-partial }}

data/pages/release/1.25.4.txt

+2
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,5 @@ This is a version not yet released.
5252
==== Fix ====
5353

5454
* The metadata url to the Unicode lang database was broken leading to a [[:docs:locale:lang|broken lang direction (LTR, RTL)]]
55+
* The lang `dir` attribute has been added back to the template theme.
56+

0 commit comments

Comments
 (0)