- From: Fuqiao Xue via GitHub <noreply@w3.org>
- Date: Tue, 29 Jul 2025 02:11:44 +0000
- To: public-i18n-archive@w3.org
xfq has just created a new issue for https://github.com/w3c/i18n-drafts:
== Add JSON-LD elements ==
We can consider adding JSON-LD `script` elements containing schema.org information to our articles and pages, which can be useful for search engines, like this:
```html
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Character encodings for beginners",
"description": "What is a character encoding, and why should I care?",
"author": {
"@type": "Person",
"name": "Richard Ishida",
"affiliation": {
"@type": "Organization",
"name": "W3C"
}
},
"publisher": {
"@type": "Organization",
"name": "W3C Internationalization Activity",
"url": "https://www.w3.org/International/"
},
"datePublished": "2008-01-31",
"dateModified": "2020-08-14",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.w3.org/International/questions/qa-what-is-encoding"
},
"about": [
{
"@type": "Thing",
"name": "Character encoding"
},
{
"@type": "Thing",
"name": "UTF-8"
},
{
"@type": "Thing",
"name": "Unicode"
},
{
"@type": "Thing",
"name": "Web development"
}
],
"educationalLevel": "Beginner",
"learningResourceType": "Article",
"inLanguage": "en",
"keywords": "character encoding, UTF-8, Unicode, web development, internationalization, i18n"
}
</script>
```
Please view or discuss this issue at https://github.com/w3c/i18n-drafts/issues/731 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Tuesday, 29 July 2025 02:11:45 UTC