Skip to content

Commit 68ad881

Browse files
authored
Fix stale README links
2 parents ff59227 + 56eec1c commit 68ad881

1 file changed

Lines changed: 15 additions & 17 deletions

File tree

β€ŽREADME.mdβ€Ž

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
- [OEmbed](#oembed)
2424
- [QQ/Wechat](#qqwechat)
2525
- [Dublin Core](#dublin-core)
26+
- [Fediverse](#fediverse)
2627
- [Browsers / Platforms](#browsers--platforms)
2728
- [Apple iOS](#apple-ios)
2829
- [Google Android](#google-android)
@@ -35,11 +36,12 @@
3536
- [Deprecated](#deprecated)
3637
- [Other Resources](#other-resources)
3738
- [Related Projects](#related-projects)
38-
- [Other Formats](#other-formats)
3939
- [Translations](#-translations)
4040
- [Contributing](#-contributing)
41-
- [Contributors](#contributors)
41+
- [Guide](#guide)
42+
- [Contributors](#-contributors)
4243
- [Author](#-author)
44+
- [Support](#-support)
4345
- [License](#-license)
4446

4547
## Recommended Minimum
@@ -221,7 +223,7 @@ The following is the recommended order of elements in the `<head>` for best perf
221223

222224
**Note:** Geo tags are **not** used by browsers directly β€” they are intended for search engines, web crawlers, and location-based services to understand the geographic relevance of a page's content. `ICBM` (named after the military ICBM address convention) and `geo.position` both express coordinates in decimal degrees; `ICBM` uses a comma separator while `geo.position` uses a semicolon. `geo.region` identifies the country (and optionally the state/region) using ISO codes, and `geo.placename` provides a human-readable place name.
223225

224-
- πŸ“– [Meta tags that Google understands](https://support.google.com/webmasters/answer/79812?hl=en)
226+
- πŸ“– [Meta tags that Google understands](https://developers.google.com/search/docs/crawling-indexing/special-tags?hl=en)
225227
- πŸ“– [WHATWG Wiki: MetaExtensions](https://wiki.whatwg.org/wiki/MetaExtensions)
226228
- πŸ“– [ICBM on Wikipedia](https://en.wikipedia.org/wiki/ICBM_address#Modern_use)
227229
- πŸ“– [Geotagging on Wikipedia](https://en.wikipedia.org/wiki/Geotagging#HTML_pages)
@@ -291,10 +293,10 @@ The following is the recommended order of elements in the `<head>` for best perf
291293
<link rel="preload" href="image.png" as="image">
292294
```
293295

294-
**Note:** The [Web App Manifest](https://developer.mozilla.org/en-US/docs/Web/Manifest) (`manifest.json`) is the recommended, cross-platform way to declare installable web app properties β€” including `name`, `icons`, `theme_color`, and `display` mode β€” in a single file, instead of relying on multiple platform-specific `<meta>` tags.
296+
**Note:** The [Web App Manifest](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Manifest) (`manifest.json`) is the recommended, cross-platform way to declare installable web app properties β€” including `name`, `icons`, `theme_color`, and `display` mode β€” in a single file, instead of relying on multiple platform-specific `<meta>` tags.
295297

296298
- πŸ“– [Link Relations](https://www.iana.org/assignments/link-relations/link-relations.xhtml)
297-
- πŸ“– [Web App Manifest (MDN)](https://developer.mozilla.org/en-US/docs/Web/Manifest)
299+
- πŸ“– [Web App Manifest (MDN)](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Manifest)
298300

299301
## Scripts
300302

@@ -326,7 +328,7 @@ The following is the recommended order of elements in the `<head>` for best perf
326328
```
327329

328330
- πŸ“– [async vs defer attributes](https://www.growingwiththeweb.com/2014/02/async-vs-defer-attributes.html)
329-
- πŸ“– [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity)
331+
- πŸ“– [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Defenses/Subresource_Integrity)
330332

331333
## Icons
332334

@@ -342,8 +344,8 @@ The following is the recommended order of elements in the `<head>` for best perf
342344
```
343345

344346
- πŸ“– [All About Favicons (And Touch Icons)](https://bitsofco.de/all-about-favicons-and-touch-icons/)
345-
- πŸ“– [Favicon Cheat Sheet](https://github.com/audreyr/favicon-cheat-sheet)
346-
- πŸ“– [Icons & Browser Colors](https://developers.google.com/web/fundamentals/design-and-ux/browser-customization/)
347+
- πŸ“– [Favicon Cheat Sheet](https://github.com/audreyfeldroy/favicon-cheat-sheet)
348+
- πŸ“– [Icons & Browser Colors](https://web.dev/articles/icons-and-browser-colors)
347349

348350
## Social
349351

@@ -437,7 +439,7 @@ Users share web pages to qq wechat will have a formatted message
437439
<meta name="description" itemprop="description" content="share content">
438440
```
439441

440-
- πŸ“– [Code Format Docs](http://open.mobile.qq.com/api/mqq/index#api:setShareInfo)
442+
- πŸ“– [Code Format Docs](https://open.mobile.qq.com/api/mqq/index#api:setShareInfo)
441443

442444
### Dublin Core
443445

@@ -509,9 +511,9 @@ Some Fediverse software such as Mastodon allow you to put your Fediverse handle
509511
<link rel="alternate" href="ios-app://APP-ID/http/url-sample.com">
510512
```
511513

512-
- πŸ“– [Configuring Web Applications](https://developer.apple.com/library/content/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html)
514+
- πŸ“– [Configuring Web Applications](https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html)
513515

514-
**Note:** Properties such as app title (`apple-mobile-web-app-title`), standalone/display mode, and app icons (`apple-touch-icon`) are more reliably and portably configured using the [Web App Manifest](https://developer.mozilla.org/en-US/docs/Web/Manifest) (`<link rel="manifest">`), which is the recommended approach for Progressive Web Apps (PWAs). The Apple-specific meta tags remain useful as a fallback for older iOS versions.
516+
**Note:** Properties such as app title (`apple-mobile-web-app-title`), standalone/display mode, and app icons (`apple-touch-icon`) are more reliably and portably configured using the [Web App Manifest](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Manifest) (`<link rel="manifest">`), which is the recommended approach for Progressive Web Apps (PWAs). The Apple-specific meta tags remain useful as a fallback for older iOS versions.
515517

516518
### Google Android
517519

@@ -527,7 +529,7 @@ Some Fediverse software such as Mastodon allow you to put your Fediverse handle
527529
<link rel="alternate" href="android-app://package-name/http/url-sample.com">
528530
```
529531

530-
**Note:** `theme-color` and the "add to home screen" / standalone behavior are better defined using the [Web App Manifest](https://developer.mozilla.org/en-US/docs/Web/Manifest) (`<link rel="manifest">`). The `theme-color` meta tag can still serve as a fallback for browsers that do not yet support the manifest `theme_color` property.
532+
**Note:** `theme-color` and the "add to home screen" / standalone behavior are better defined using the [Web App Manifest](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Manifest) (`<link rel="manifest">`). The `theme-color` meta tag can still serve as a fallback for browsers that do not yet support the manifest `theme_color` property.
531533

532534
### Google Chrome
533535

@@ -622,10 +624,6 @@ For tags and elements that were once part of this guide but are no longer suppor
622624
- [head-it](https://github.com/hemanth/head-it) - CLI interface for `HEAD` snippets
623625
- [vue-head](https://github.com/ktquez/vue-head) - Manipulating the meta information of the `HEAD` tag for Vue.js
624626

625-
## Other Formats
626-
627-
- πŸ“„ [PDF](https://gitprint.com/joshbuchea/HEAD/blob/master/README.md)
628-
629627
## 🌐 Translations
630628

631629
- [Bahasa](https://github.com/rijdz/HEAD)
@@ -695,4 +693,4 @@ Everything helps, thanks! πŸ™
695693

696694
## πŸ“ License
697695

698-
[![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/)
696+
[![CC0](https://licensebuttons.net/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/)

0 commit comments

Comments
Β (0)