-
Notifications
You must be signed in to change notification settings - Fork 22.7k
Improves the explanation for the application-name metadata #39584
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Preview URLs (comment last updated: 2025-05-20 10:42:04) |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The additions are good. Just suggestions on how to rearrange it.
@@ -13,7 +13,15 @@ The {{htmlelement("meta")}} element can be used to provide document metadata in | |||
|
|||
The HTML specification defines the following set of standard metadata names: | |||
|
|||
- `application-name`: the name of the application running in the web page. | |||
- `application-name`: the name of the application running in the web page. Only use this if the page is a web application. To provide translations, use multiple `<meta>` tags with the `lang` attribute for each language. | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To provide translations, use multiple `<meta>` tags with the `lang` attribute for each language: | |
@@ -13,7 +13,15 @@ The {{htmlelement("meta")}} element can be used to provide document metadata in | |||
|
|||
The HTML specification defines the following set of standard metadata names: | |||
|
|||
- `application-name`: the name of the application running in the web page. | |||
- `application-name`: the name of the application running in the web page. Only use this if the page is a web application. To provide translations, use multiple `<meta>` tags with the `lang` attribute for each language. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the "Only use this if the page is a web application." is kind of in the note following this, so let's edit the note with this instead.
- `application-name`: the name of the application running in the web page. Only use this if the page is a web application. To provide translations, use multiple `<meta>` tags with the `lang` attribute for each language. | |
- `application-name`: the name of the application running in the web page. | |
To provide translations, use multiple `<meta>` tags with the `lang` attribute for each language. |
- `application-name`: the name of the application running in the web page. Only use this if the page is a web application. To provide translations, use multiple `<meta>` tags with the `lang` attribute for each language. | |
- `application-name`: the name of the application running in the web page. |
then edit note.
Description
Adds an example on providing localized
application-name
using thelang
attribute.Link to specification - application-name