Skip to content

Commit 461ce18

Browse files
ihermanmsporny
authored andcommitted
Unnecessary "`" signs in i18n examples
The "`" characters in the I18N examples seem to be unnecessary and yield erroneous JSON-LD...
1 parent 21a0755 commit 461ce18

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -6171,8 +6171,8 @@ <h3>Language and Base Direction</h3>
61716171
<pre class="example nohighlight" title="Design pattern for natural language strings">
61726172
"myProperty": {
61736173
"@value": "<span class="highlight">The string value</span>",
6174-
"@language": "`LANGUAGE`"
6175-
"@direction": "`DIRECTION`"
6174+
"@language": "LANGUAGE"
6175+
"@direction": "DIRECTION"
61766176
}
61776177
</pre>
61786178

@@ -6194,7 +6194,7 @@ <h3>Language and Base Direction</h3>
61946194
<pre class="example nohighlight" title="Expressing natural language text as English">
61956195
"title": {
61966196
"@value": "<span class="highlight">HTML and CSS: Designing and Creating Websites</span>",
6197-
"@language": "`en`"
6197+
"@language": "en"
61986198
}
61996199
</pre>
62006200

@@ -6206,8 +6206,8 @@ <h3>Language and Base Direction</h3>
62066206
<pre class="example nohighlight" title="Arabic text with a base direction of right-to-left">
62076207
"title": {
62086208
"@value": "<span class="highlight" dir="rtl" lang="ar">HTML و CSS: تصميم و إنشاء مواقع الويب</span>",
6209-
"@language": "`ar`",
6210-
"@direction": "`rtl`"
6209+
"@language": "ar",
6210+
"@direction": "rtl"
62116211
}
62126212
</pre>
62136213

@@ -6226,12 +6226,12 @@ <h3>Language and Base Direction</h3>
62266226
"title": [
62276227
{
62286228
"@value": "<span class="highlight">HTML and CSS: Designing and Creating Websites</span>",
6229-
"@language": "`en`"
6229+
"@language": "en"
62306230
},
62316231
{
62326232
"@value": "<span class="highlight" dir="rtl" lang="ar">HTML و CSS: تصميم و إنشاء مواقع الويب</span>",
6233-
"@language": "`ar`",
6234-
"@direction": "`rtl`"
6233+
"@language": "ar",
6234+
"@direction": "rtl"
62356235
}
62366236
]
62376237
</pre>

0 commit comments

Comments
 (0)