Skip to content

Commit

Permalink
update links and format markdown table
Browse files Browse the repository at this point in the history
  • Loading branch information
yin1999 committed Jul 8, 2023
1 parent 716372b commit 66ad544
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions files/zh-cn/web/html/element/meta/name/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ HTML 规范定义了以下标准元数据名称:
- `keywords`:与页面内容相关的关键词,使用逗号分隔。
- `referrer`:控制由当前文档发出的请求的 HTTP {{httpheader("Referer")}} 请求头。

| 属性值 | 描述 |
| 属性值 | 描述 |
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `no-referrer` | 不发送 HTTP {{httpheader("Referer")}} 请求头。 |
| `origin` | 只发送当前文档的 {{glossary("origin")}}。 |
| `no-referrer` | 不发送 HTTP {{httpheader("Referer")}} 请求头。 |
| `origin` | 只发送当前文档的 {{glossary("origin")}}。 |
| `no-referrer-when-downgrade` | 如果请求目标与当前页面一样安全或者更加安全(HTTP(S)→HTTPS),则发送完整 URL;如果请求目标更加不安全(HTTPS→HTTP),则不发送 referrer。这是默认行为。 |
| `origin-when-cross-origin` | 对同源请求发送完整 URL(不含 URL 参数),其他情况下,只发送 origin。 |
| `same-origin` | 对同源请求发送完整 URL(不含 URL 参数),其他情况下,请求不包含 referrer 请求头。 |
Expand Down Expand Up @@ -56,23 +56,23 @@ CSS 颜色调整规范(CSS Color Adjustment specification)定义了以下元
For example, to indicate that a document prefers dark mode but does render functionally in light mode as well:

```html
<meta name="color-scheme" content="dark light">
<meta name="color-scheme" content="dark light" />
```

This works at the document level in the same way that the CSS {{cssxref("color-scheme")}} property lets individual elements specify their preferred and accepted color schemes. Your styles can adapt to the current color scheme using the {{cssxref("@media/prefers-color-scheme", "prefers-color-scheme")}} CSS media feature.

CSS 设备适配规范(CSS Device Adaptation specification)定义了以下元数据名称:

- `viewport`: 为{{glossary("viewport")}}(视口)的初始大小提供指示(hint)。目前仅用于移动设备。
| 值 | 可能的附加值 | 描述 |
- `viewport`: 为{{glossary("viewport", "视口")}}的初始大小提供指示(hint)。目前仅用于移动设备。
| 值 | 可能的附加值 | 描述 |
| --------------- | -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `width` | 一个正整数,或者字符串 `device-width` | 定义 viewport 的宽度,如果值为正整数,则单位为像素。 |
| `height` | 一个正整数,或者字符串 `device-height` | 定义 viewport 的高度。未被任何浏览器使用。 |
| `initial-scale` | 一个 `0.0` 和 `10.0` 之间的正数 | 定义设备宽度(宽度和高度中更小的那个:如果是纵向屏幕,就是 `device-width`,如果是横向屏幕,就是 `device-height`)与 viewport 大小之间的缩放比例。 |
| `maximum-scale` | 一个 `0.0` 和 `10.0` 之间的正数 | 定义缩放的最大值,必须大于等于 `minimum-scale`,否则表现将不可预测。浏览器设置可以忽略此规则;iOS 10 开始,Safari iOS 默认忽略此规则。 |
| `minimum-scale` | 一个 `0.0` 和 `10.0` 之间的正数 | 定义缩放的最小值,必须小于等于 `maximum-scale`,否则表现将不可预测。浏览器设置可以忽略此规则;iOS 10 开始,Safari iOS 默认忽略此规则。 |
| `user-scalable` | `yes` 或者 `no` | 默认为 `yes`,如果设置为 `no`,用户将无法缩放当前页面。浏览器设置可以忽略此规则;iOS 10 开始,Safari iOS 默认忽略此规则。 |
| `viewport-fit` | `auto`、`contain` 或者 `cover` | The `auto` value doesn’t affect the initial layout viewport, and the whole web page is viewable.The `contain` value means that the viewport is scaled to fit the largest rectangle inscribed within the display.The `cover` value means that the viewport is scaled to fill the device display. It is highly recommended to make use of the [safe area inset](/zh-CN/docs/Web/CSS/env) variables to ensure that important content doesn't end up outside the display. |
| `width` | 一个正整数,或者字符串 `device-width` | 定义 viewport 的宽度,如果值为正整数,则单位为像素。 |
| `height` | 一个正整数,或者字符串 `device-height` | 定义 viewport 的高度。未被任何浏览器使用。 |
| `initial-scale` | 一个 `0.0` 和 `10.0` 之间的正数 | 定义设备宽度(宽度和高度中更小的那个:如果是纵向屏幕,就是 `device-width`,如果是横向屏幕,就是 `device-height`)与 viewport 大小之间的缩放比例。 |
| `maximum-scale` | 一个 `0.0` 和 `10.0` 之间的正数 | 定义缩放的最大值,必须大于等于 `minimum-scale`,否则表现将不可预测。浏览器设置可以忽略此规则;iOS 10 开始,Safari iOS 默认忽略此规则。 |
| `minimum-scale` | 一个 `0.0` 和 `10.0` 之间的正数 | 定义缩放的最小值,必须小于等于 `maximum-scale`,否则表现将不可预测。浏览器设置可以忽略此规则;iOS 10 开始,Safari iOS 默认忽略此规则。 |
| `user-scalable` | `yes` 或者 `no` | 默认为 `yes`,如果设置为 `no`,用户将无法缩放当前页面。浏览器设置可以忽略此规则;iOS 10 开始,Safari iOS 默认忽略此规则。 |
| `viewport-fit` | `auto`、`contain` 或者 `cover` | The `auto` value doesn’t affect the initial layout viewport, and the whole web page is viewable.The `contain` value means that the viewport is scaled to fit the largest rectangle inscribed within the display.The `cover` value means that the viewport is scaled to fill the device display. It is highly recommended to make use of the [safe area inset](/zh-CN/docs/Web/CSS/env) variables to ensure that important content doesn't end up outside the display. |

> **备注:** 虽然此元数据条目未被标准化,但是,由于此条目在事实上处于支配地位,大多数移动浏览器都遵守此条目的声明。
>
Expand All @@ -95,18 +95,18 @@ The [WHATWG Wiki MetaExtensions page](https://wiki.whatwg.org/wiki/MetaExtension
- `publisher`:当前文档的发布者/出版者。
- `robots`:爬虫、协作搜寻器,或者“机器人”,对此页面的处理行为,或者说,应当遵守的规则。是一个使用逗号分隔的、由下列值构成的列表:

| 值 | 描述 | 被用于 |
| -------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `index` | 允许机器人索引此页面(默认)。 | 所有爬虫 |
| `noindex` | 要求机器人不索引此页面。 | 所有爬虫 |
| `follow` | 允许机器人跟随此页面上的链接(默认)。 | 所有爬虫 |
| `nofollow` | 要求机器人不跟随此页面上的链接。 | 所有爬虫 |
| `all` | 与 `index, follow` 等价 | [Google](https://support.google.com/webmasters/answer/79812) |
| `none` | 与 `noindex, nofollow` 等价 | [Google](https://support.google.com/webmasters/answer/79812) |
| `noarchive` | 要求搜索引擎不缓存页面内容。 | [Google](https://developers.google.com/webmasters/control-crawl-index/docs/robots_meta_tag#valid-indexing--serving-directives)、[Yahoo](https://help.yahoo.com/kb/search-for-desktop/SLN2213.html)、[Bing](https://www.bing.com/webmaster/help/which-robots-metatags-does-bing-support-5198d240) |
| `nosnippet` | 阻止搜索引擎显示相关页面的文字摘录。 | [Google](https://developers.google.com/webmasters/control-crawl-index/docs/robots_meta_tag#valid-indexing--serving-directives)、[Bing](https://www.bing.com/webmaster/help/which-robots-metatags-does-bing-support-5198d240) |
| `noimageindex` | Requests this page not to appear as the referring page of an indexed image. | [Google](https://developers.google.com/webmasters/control-crawl-index/docs/robots_meta_tag#valid-indexing--serving-directives) |
| `nocache` | `noarchive` 的替代名称。 | [Bing](https://www.bing.com/webmaster/help/which-robots-metatags-does-bing-support-5198d240) |
| 值 | 描述 | 被用于 |
| -------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `index` | 允许机器人索引此页面(默认)。 | 所有爬虫 |
| `noindex` | 要求机器人不索引此页面。 | 所有爬虫 |
| `follow` | 允许机器人跟随此页面上的链接(默认)。 | 所有爬虫 |
| `nofollow` | 要求机器人不跟随此页面上的链接。 | 所有爬虫 |
| `all` | 与 `index, follow` 等价 | [Google](https://developers.google.com/search/docs/advanced/crawling/special-tags?visit_id=637855965074074862-574753619&rd=1) |
| `none` | 与 `noindex, nofollow` 等价 | [Google](https://developers.google.com/search/docs/advanced/crawling/special-tags?visit_id=637855965074074862-574753619&rd=1) |
| `noarchive` | 要求搜索引擎不缓存页面内容。 | [Google](https://developers.google.com/search/docs/advanced/robots/robots_meta_tag)、[Yahoo](https://help.yahoo.com/kb/search-for-desktop/SLN2213.html)、[Bing](https://www.bing.com/webmasters/help/which-robots-metatags-does-bing-support-5198d240) |
| `nosnippet` | 不在搜索引擎的结果中显示该网页的任何描述。 | [Google](https://developers.google.com/search/docs/advanced/robots/robots_meta_tag)、[Bing](https://www.bing.com/webmasters/help/which-robots-metatags-does-bing-support-5198d240) |
| `noimageindex` | Requests this page not to appear as the referring page of an indexed image. | [Google](https://developers.google.com/search/docs/advanced/robots/robots_meta_tag) |
| `nocache` | `noarchive` 的替代名称。 | [Bing](https://www.bing.com/webmasters/help/which-robots-metatags-does-bing-support-5198d240) |

> **备注:** 只有正规的爬虫/协作搜寻器/机器人遵守这些规则。不要指望爬取电子邮件地址的恶意爬虫也这么做。
>
Expand Down

0 comments on commit 66ad544

Please sign in to comment.