Skip to content
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

zh-cn: batch space fix part 3 #15575

Closed
wants to merge 2 commits into from

Conversation

hanyujie2002
Copy link
Contributor

@hanyujie2002 hanyujie2002 commented Sep 2, 2023

Description

Same as title

Motivation

fix the typesetting

Additional details

Sed don't support unicode, so we need to set it as [㐀-䶵一-鿏]

Example code, we hope 文[A be fixed as 文 [A, we could use the command:

find ./ -type f -name "*.md" -exec sed -i 's/\([㐀-䶵一-鿏]\)\[\([A-Za-z]\)/\1 [\2/g' {} \;

What's more, there are over 500 changed files, that's huge number so I write a bash script

#!/bin/bash

# create the file which contains all changed files' name
git diff --name-only > files/zh-cn/file_names

# Set the starting and ending numbers for the file names
start=1
end=3

# Loop through the numbers
for ((num=start; num<=end; num++))
do
  # Create the target file name
  target_file="files/zh-cn/file_name_$num"
  source_file="files/zh-cn/file_names"

  # Create the branch name
  branch_name="batch_space_fix_neo_$num"

  # Cat the first 200 lines from the source file to the target file
  head --lines 200 "$source_file" > "$target_file"

  # Checkout to the new branch
  git checkout "$branch_name"

  # add 200 files from target file
  while read -r file; do git add "$file"; done < "$target_file"

  # commit to origin repository
  git commit -m "batch space fix part $num"

  # Push the branch to the remote repository
  git push origin "$branch_name"

  # Switch back to the original branch
  git checkout batch_space_fix_neo

  # delete the first 200 lines of source file
  tail -n +200 "$source_file"> temp.txt && mv temp.txt "$source_file";
done

Related issues and pull requests

None

@github-actions github-actions bot added the l10n-zh Issues related to Chinese content. label Sep 2, 2023
@@ -60,7 +60,7 @@ slug: Web/HTTP/Content_negotiation/List_of_default_Accept_values

| User Agent | Value | Comment |
| ------------------------------ | ----------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Firefox | `*/*` | 请参见[bug 170789](https://bugzilla.mozilla.org/show_bug.cgi?id=170789) |
| Firefox | `*/*` | 请参见 [bug 170789](https://bugzilla.mozilla.org/show_bug.cgi?id=170789) |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[mdn-linter] reported by reviewdog 🐶

Suggested change
| Firefox | `*/*` | 请参见 [bug 170789](https://bugzilla.mozilla.org/show_bug.cgi?id=170789) |
| Firefox | `*/*` | 请参见 [bug 170789](https://bugzilla.mozilla.org/show_bug.cgi?id=170789) |

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't see any different >﹏<

@@ -71,7 +71,7 @@ slug: Web/HTTP/Content_negotiation/List_of_default_Accept_values

| User Agent | Value | Comment |
| ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Firefox 4 | `text/css,*/*;q=0.1` | 请参见[bug 170789](https://bugzilla.mozilla.org/show_bug.cgi?id=170789) |
| Firefox 4 | `text/css,*/*;q=0.1` | 请参见 [bug 170789](https://bugzilla.mozilla.org/show_bug.cgi?id=170789) |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[mdn-linter] reported by reviewdog 🐶

Suggested change
| Firefox 4 | `text/css,*/*;q=0.1` | 请参见 [bug 170789](https://bugzilla.mozilla.org/show_bug.cgi?id=170789) |
| Firefox 4 | `text/css,*/*;q=0.1` | 请参见 [bug 170789](https://bugzilla.mozilla.org/show_bug.cgi?id=170789) |

@github-actions
Copy link
Contributor

github-actions bot commented Sep 2, 2023

Preview URLs (103 pages)
Flaws (797)

Note! 14 documents with no flaws that don't need to be listed. 🎉

URL: /zh-CN/docs/Web/HTTP/Resources_and_URIs
Title: Resources and URIs
Flaw count: 3

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/HTTP/Basics_of_HTTP/Data_URIs
    • Can't resolve /zh-CN/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types
    • Can't resolve /zh-CN/docs/Web/HTTP/Basics_of_HTTP/Separating_identity_and_location_of_a_resource

URL: /zh-CN/docs/Web/HTTP/Headers/Accept-CH-Lifetime
Title: Accept-CH-Lifetime
Flaw count: 4

  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
  • translation_differences:
    • Differences in the important macros (2 in common of 3 possible)

URL: /zh-CN/docs/Web/HTTP/Headers/Content-Security-Policy
Title: Content-Security-Policy
Flaw count: 5

  • macros:
    • /zh-CN/docs/Glossary/XSS does not exist but fell back to /en-US/docs/Glossary/Cross-site_scripting
    • /zh-CN/docs/Glossary/SRI does not exist but fell back to /en-US/docs/Glossary/SRI
  • broken_links:
    • Can't resolve /docs/Web/API/WebRTC_API
    • Can't resolve /zh-CN/docs/Tools/GCLI/Display_security_and_privacy_policies
  • heading_links:
    • h3 heading contains an <a> tag

URL: /zh-CN/docs/Web/HTTP/Headers/Content-Security-Policy/frame-ancestors
Title: CSP:frame-ancestors
Flaw count: 3

  • broken_links:
    • Can't resolve /zh-CN/docs/URIs_and_URLs
    • Can't resolve /zh-CN/docs/Web/HTTP/Basics_of_HTTP/Data_URIs
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/Web/HTTP/Headers/Content-Security-Policy/sandbox
Title: CSP: sandbox
Flaw count: 1

  • broken_links:
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/Web/HTTP/Headers/Permissions-Policy
Title: Permissions-Policy
Flaw count: 13

  • macros:
    • /zh-CN/docs/Web/API/Promise does not exist but fell back to /en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
    • /zh-CN/docs/Web/API/Navigator/requestMediaKeySystemAccess does not exist but fell back to /en-US/docs/Web/API/Navigator/requestMediaKeySystemAccess
    • /zh-CN/docs/Web/API/Promise does not exist but fell back to /en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
    • /zh-CN/docs/Web/API/PositionError redirects to /zh-CN/docs/Web/API/GeolocationPositionError
    • /zh-CN/docs/Web/API/Navigator/requestMIDIAccess does not exist but fell back to /en-US/docs/Web/API/Navigator/requestMIDIAccess
    • and 2 more flaws omitted
  • broken_links:
    • Can't resolve /zh-CN/docs/Web/HTTP/Feature_Policy
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Web/HTTP/Feature_Policy
    • Can't resolve /zh-CN/docs/Web/HTTP/Feature_Policy/Using_Feature_Policy
  • translation_differences:
    • Differences in the important macros (3 in common of 4 possible)

URL: /zh-CN/docs/Web/HTTP/Headers/Cross-Origin-Resource-Policy
Title: Cross-Origin-Resource-Policy
Flaw count: 1

  • broken_links:
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/Web/HTTP/Compression
Title: HTTP 协议中的数据压缩
Flaw count: 1

  • broken_links:
    • Is currently http:// but can become https://

URL: /zh-CN/docs/Web/HTTP/Content_negotiation/List_of_default_Accept_values
Title: Accept 默认值
Flaw count: 7

  • broken_links:
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • and 2 more flaws omitted

URL: /zh-CN/docs/Web/HTTP/Cookies
Title: HTTP Cookie
Flaw count: 6

  • broken_links:
    • Can't resolve /zh-CN/docs/Tools/Storage_Inspector
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Anchor not lowercase
    • and 1 more flaws omitted

URL: /zh-CN/docs/Web/HTTP/Status
Title: HTTP 响应状态码
Flaw count: 1

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/HTML/Link_types/preload

URL: /zh-CN/docs/Web/MathML
Title: MathML
Flaw count: 3

  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/tag/MathML
    • Is currently http:// but can become https://

URL: /zh-CN/docs/Web/MathML/Element/mspace
Title: <mspace>
Flaw count: 6

  • broken_links:
    • Can't resolve /zh-CN/docs/CSS
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Is currently http:// but can become https://
  • translation_differences:
    • Differences in the important macros (2 in common of 3 possible)

URL: /zh-CN/docs/Web/MathML/Element/maction
Title: <maction>
Flaw count: 2

  • broken_links:
    • Can't resolve /zh-CN/docs/CSS
  • translation_differences:
    • Differences in the important macros (2 in common of 3 possible)

URL: /zh-CN/docs/Web/Progressive_web_apps/Tutorials/js13kGames/Installable_PWAs
Title: 让 PWA 易于安装
Flaw count: 2

  • broken_links:
    • Can't resolve /zh-CN/Apps/Progressive/Guides/Making_PWAs_installable#manifest
    • Can't resolve /zh-CN/docs/Web/Apps/Progressive/Guides/Making_PWAs_installable

URL: /zh-CN/docs/Web/Progressive_web_apps/Tutorials/js13kGames/App_structure
Title: PWA 结构
Flaw count: 1

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/Apps/Progressive/Guides/Making_PWAs_installable

URL: /zh-CN/docs/Web/Progressive_web_apps/Tutorials/js13kGames/Re-engageable_Notifications_Push
Title: 通过通知推送让 PWA 可重用
Flaw count: 3

  • macros:
    • /zh-CN/docs/Web/API/ServiceWorkerGlobalScope/push_event does not exist but fell back to /en-US/docs/Web/API/ServiceWorkerGlobalScope/push_event
    • /zh-CN/docs/Web/API/ServiceWorkerGlobalScope/push_event does not exist but fell back to /en-US/docs/Web/API/ServiceWorkerGlobalScope/push_event
  • broken_links:
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/Web/HTML/Element/samp
Title: <samp>
Flaw count: 20

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 10 more flaws omitted
  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/DOM/element
    • Can't resolve /zh-CN/DOM/span
    • Can't resolve /zh-CN/HTML/Element/code
  • translation_differences:
    • Differences in the important macros (2 in common of 6 possible)

URL: /zh-CN/docs/Web/HTML/Element/th
Title: <th>
Flaw count: 30

  • macros:
    • /zh-CN/docs/Web/HTML/Element/td does not exist but fell back to /en-US/docs/Web/HTML/Element/td
    • /zh-CN/docs/Web/API/HTMLTableHeaderCellElement does not exist but fell back to /en-US/docs/Web/API/HTMLTableCellElement
    • /zh-CN/docs/Web/HTML/Element/td does not exist but fell back to /en-US/docs/Web/HTML/Element/td
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • and 13 more flaws omitted
  • broken_links:
    • No need for the pathname in anchor links if it's the same page
    • No need for the pathname in anchor links if it's the same page
    • No need for the pathname in anchor links if it's the same page
    • No need for the pathname in anchor links if it's the same page
    • No need for the pathname in anchor links if it's the same page
    • and 6 more flaws omitted
  • translation_differences:
    • Differences in the important macros (3 in common of 4 possible)

URL: /zh-CN/docs/Web/HTML/Element/link
Title: <link>:外部资源链接元素
Flaw count: 37

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 12 more flaws omitted
  • broken_links:
    • Can't resolve /zh-CN/docs/Web/HTML/Link_types
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Web/HTML/CORS_Enabled_Image
    • Can't resolve /zh-CN/docs/Web/HTML/CORS_settings_attributes
    • and 14 more flaws omitted
  • translation_differences:
    • Differences in the important macros (3 in common of 5 possible)

URL: /zh-CN/docs/Web/HTML/Element/xmp
Title: <xmp>
Flaw count: 19

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 11 more flaws omitted
  • broken_links:
    • Can't resolve /zh-CN/docs/CSS
    • Can't resolve /zh-CN/docs/Web/HTML/global_attributes
  • translation_differences:
    • Differences in the important macros (2 in common of 3 possible)

URL: /zh-CN/docs/Web/HTML/Element/video
Title: <video>: 视频嵌入元素
Flaw count: 33

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 21 more flaws omitted
  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • and 1 more flaws omitted
  • translation_differences:
    • Differences in the important macros (4 in common of 6 possible)

URL: /zh-CN/docs/Web/HTML/Element/input
Title: <input>:输入(表单输入)元素
Flaw count: 52

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 39 more flaws omitted
  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Web/HTML/Element/Input/date#step
    • Can't resolve /zh-CN/docs/Web/HTML/Element/Input/datetime-local#step
    • and 2 more flaws omitted
  • translation_differences:
    • Differences in the important macros (28 in common of 32 possible)

URL: /zh-CN/docs/Web/HTML/Element/p
Title: <p>
Flaw count: 26

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 16 more flaws omitted
  • broken_links:
    • Can't resolve /zh-CN/docs/HTML/Block-level_elements
    • Anchor not lowercase
    • Anchor not lowercase
    • Anchor not lowercase
  • translation_differences:
    • Differences in the important macros (3 in common of 7 possible)

URL: /zh-CN/docs/Web/HTML/Element/tfoot
Title: <tfoot>
Flaw count: 23

  • macros:
    • /zh-CN/docs/Web/API/HTMLTableSectionElement does not exist but fell back to /en-US/docs/Web/API/HTMLTableSectionElement
    • /zh-CN/docs/Web/HTML/Element/td does not exist but fell back to /en-US/docs/Web/HTML/Element/td
    • /zh-CN/docs/Web/HTML/Element/td does not exist but fell back to /en-US/docs/Web/HTML/Element/td
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • and 13 more flaws omitted
  • broken_links:
    • No need for the pathname in anchor links if it's the same page
    • No need for the pathname in anchor links if it's the same page
    • Can't resolve /zh-CN/docs/Web/HTML/Element/tbtfootody#char
    • No need for the pathname in anchor links if it's the same page
  • translation_differences:
    • Differences in the important macros (3 in common of 4 possible)

URL: /zh-CN/docs/Web/HTML/Element/slot
Title: <slot>
Flaw count: 16

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 11 more flaws omitted

URL: /zh-CN/docs/Web/HTML/Element/style
Title: <style>
Flaw count: 22

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 10 more flaws omitted
  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Anchor not lowercase
    • Anchor not lowercase
    • Anchor not lowercase
    • Can't resolve /zh-CN/docs/Web/Guide/CSS/Media_queries
    • and 1 more flaws omitted
  • translation_differences:
    • Differences in the important macros (4 in common of 10 possible)

URL: /zh-CN/docs/Web/HTML/Element/mark
Title: <mark>
Flaw count: 22

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 10 more flaws omitted
  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • and 1 more flaws omitted
  • translation_differences:
    • Differences in the important macros (3 in common of 7 possible)

URL: /zh-CN/docs/Web/HTML/Global_attributes/contextmenu
Title: contextmenu
Flaw count: 16

  • macros:
    • /zh-CN/docs/Web/HTML/Attributes/accept does not exist but fell back to /en-US/docs/Web/HTML/Attributes/accept
    • /zh-CN/docs/Web/HTML/Attributes/capture does not exist but fell back to /en-US/docs/Web/HTML/Attributes/capture
    • /zh-CN/docs/Web/HTML/Attributes/dirname does not exist but fell back to /en-US/docs/Web/HTML/Attributes/dirname
    • /zh-CN/docs/Web/HTML/Attributes/elementtiming does not exist but fell back to /en-US/docs/Web/HTML/Attributes/elementtiming
    • /zh-CN/docs/Web/HTML/Attributes/for does not exist but fell back to /en-US/docs/Web/HTML/Attributes/for
    • and 10 more flaws omitted
  • translation_differences:
    • Differences in the important macros (2 in common of 4 possible)

URL: /zh-CN/docs/Web/SVG
Title: SVG:可缩放矢量图形
Flaw count: 1

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/XML/XML_Introduction

URL: /zh-CN/docs/Web/SVG/SVG_as_an_Image
Title: 作为图片的 SVG
Flaw count: 3

  • macros:
    • /zh-CN/docs/Web/HTML/Element/svg does not exist
  • broken_links:
    • Can't resolve /zh-CN/docs/HTML/Canvas/Tutorial/Using_images#drawImage
    • Can't resolve /zh-CN/docs/DOM/BlobBuilder

URL: /zh-CN/docs/Web/SVG/Element/use
Title: use
Flaw count: 9

  • broken_links:
    • Can't resolve /zh-CN/CSS
    • Can't resolve /zh-CN/CSS/inheritance
    • Can't resolve /zh-CN/SVG/Attribute#ConditionalProccessing
    • Can't resolve /zh-CN/SVG/Attribute#Core
    • Can't resolve /zh-CN/SVG/Attribute#GraphicalEvent
    • and 3 more flaws omitted
  • translation_differences:
    • Differences in the important macros (2 in common of 4 possible)

URL: /zh-CN/docs/Web/SVG/Content_type
Title: 内容类型
Flaw count: 32

  • macros:
    • /zh-CN/docs/Web/API/SVGAngle does not exist but fell back to /en-US/docs/Web/API/SVGAngle
    • /zh-CN/docs/Web/API/SVGAnimatedAngle_objects does not exist
    • /zh-CN/docs/Web/API/SVGColor does not exist
    • /zh-CN/docs/Web/API/SVGLength does not exist but fell back to /en-US/docs/Web/API/SVGLength
    • /zh-CN/docs/Web/API/SVGAnimatedLength does not exist but fell back to /en-US/docs/Web/API/SVGAnimatedLength
    • and 17 more flaws omitted
  • broken_links:
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • and 5 more flaws omitted

URL: /zh-CN/docs/Web/SVG/Tutorial
Title: SVG 教程
Flaw count: 17

  • broken_links:
    • Can't resolve /zh-CN/SVG
    • Is currently http:// but can become https://
    • Can't resolve /zh-CN/Web/SVG/Tutorial/Introduction
    • Can't resolve /zh-CN/Web/SVG/Tutorial/Getting_Started
    • Can't resolve /zh-CN/Web/SVG/Tutorial/Positions
    • and 12 more flaws omitted

URL: /zh-CN/docs/Web/SVG/Tutorial/Introduction
Title: 引言
Flaw count: 4

  • broken_links:
    • Is currently http:// but can become https://
    • Can't resolve /zh-CN/JavaScript
    • Can't resolve /zh-CN/CSS
    • Anchor not lowercase

URL: /zh-CN/docs/Web/SVG/Tutorial/SVG_Image_Tag
Title: SVG image 元素
Flaw count: 1

  • broken_links:
    • Is currently http:// but can become https://

URL: /zh-CN/docs/Web/SVG/Tutorial/Fills_and_Strokes
Title: 填充和边框
Flaw count: 2

  • broken_links:
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://

URL: /zh-CN/docs/Web/SVG/Tutorial/Basic_Transformations
Title: 基础变形
Flaw count: 3

  • broken_links:
    • Anchor not lowercase
    • Is currently http:// but can become https://
  • translation_differences:
    • Differences in the important macros (1 in common of 6 possible)

URL: /zh-CN/docs/Web/SVG/Tutorial/SVG_fonts
Title: SVG 字体
Flaw count: 2

  • broken_links:
    • Is currently http:// but can become https://
    • Can't resolve /zh-CN/CSS/@font-face

URL: /zh-CN/docs/Web/SVG/Tutorial/SVG_In_HTML_Introduction
Title: SVG In HTML Introduction
Flaw count: 6

  • broken_links:
    • Can't resolve /zh-CN/docs/SVG
    • Can't resolve /zh-CN/docs/JavaScript
    • Can't resolve /zh-CN/docs/CSS
    • Can't resolve /presentations/xtech2005/svg-canvas/SVGDemo.xml
    • Can use the English (en-US) link as a fallback
    • and 1 more flaws omitted

URL: /zh-CN/docs/Web/SVG/Tutorial/Basic_Shapes
Title: 基本形状
Flaw count: 6

  • broken_links:
    • Can't resolve /zh-CN/Web/SVG/Element/ellipse
    • Can't resolve /zh-CN/Web/SVG/Element/line
    • Can't resolve /zh-CN/Web/SVG/Element/polyline
    • Can't resolve /zh-CN/SVG/Element/polygon
    • Can't resolve /zh-CN/SVG/Tutorial/Paths
    • and 1 more flaws omitted

URL: /zh-CN/docs/Web/JavaScript
Title: JavaScript
Flaw count: 3

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/JavaScript/A_re-introduction_to_JavaScript
    • Can't resolve /zh-CN/docs/Web/JavaScript/Guide/Inheritance_and_the_prototype_chain
    • Can't resolve /zh-CN/docs/Web/JavaScript/Typed_arrays

URL: /zh-CN/docs/Web/JavaScript/Language_overview
Title: 重新介绍 JavaScript(JS 教程)
Flaw count: 21

  • macros:
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
  • broken_links:
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • and 13 more flaws omitted

URL: /zh-CN/docs/Web/JavaScript/Reference/Operators/this
Title: this
Flaw count: 2

  • broken_links:
    • Can't resolve /zh-CN/docs/Glossary/undefined
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/Web/JavaScript/Reference/Operators/Property_accessors
Title: 属性访问器
Flaw count: 3

  • broken_links:
    • Can't resolve /zh-CN/docs/Mozilla/Projects/SpiderMonkey
    • Anchor not lowercase
  • translation_differences:
    • Differences in the important macros (3 in common of 5 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Operators/new.target
Title: new.target
Flaw count: 1

  • translation_differences:
    • Differences in the important macros (3 in common of 4 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Operators/null
Title: null
Flaw count: 2

  • broken_links:
    • Can use the English (en-US) link as a fallback
  • translation_differences:
    • Differences in the important macros (3 in common of 5 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Lexical_grammar
Title: 词法文法
Flaw count: 10

  • macros:
    • /zh-CN/docs/Web/JavaScript/Reference/Statements/default does not exist but fell back to /en-US/docs/Web/JavaScript/Reference/Statements/switch
  • broken_links:
    • Anchor not lowercase
    • Anchor not lowercase
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/template_strings
    • Is currently http:// but can become https://
    • Anchor not lowercase
    • and 3 more flaws omitted
  • translation_differences:
    • Differences in the important macros (2 in common of 3 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/globalThis
Title: globalThis
Flaw count: 1

  • macros:
    • /zh-CN/docs/Web/JavaScript/Reference/eval redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/eval

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy
Title: Proxy
Flaw count: 26

  • macros:
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/handler does not exist but fell back to /en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/handler/getPrototypeOf redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/getPrototypeOf
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/handler/setPrototypeOf redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/setPrototypeOf
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/handler/isExtensible redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/isExtensible
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/handler/preventExtensions redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/preventExtensions
    • and 13 more flaws omitted
  • broken_links:
    • Anchor not lowercase
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/handler/construct
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy/handler/apply
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • and 3 more flaws omitted

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Function/caller
Title: Function.caller
Flaw count: 3

  • broken_links:
    • Can't resolve /zh-CN/SpiderMonkey
    • Can't resolve /zh-CN/JavaScript/Reference/Functions_and_function_scope/arguments/caller
  • translation_differences:
    • Differences in the important macros (0 in common of 1 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WeakRef
Title: WeakRef
Flaw count: 3

  • macros:
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry does not exist but fell back to /en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry does not exist but fell back to /en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry
  • broken_links:
    • Anchor not lowercase

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WeakRef/deref
Title: WeakRef.prototype.deref()
Flaw count: 2

  • broken_links:
    • Anchor not lowercase
    • Anchor not lowercase

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Date/parse
Title: Date.parse()
Flaw count: 5

  • broken_links:
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/toString
Title: TypedArray.prototype.toString()
Flaw count: 2

  • broken_links:
    • Anchor not lowercase
  • translation_differences:
    • Differences in the important macros (2 in common of 3 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Intl
Title: Intl
Flaw count: 22

  • macros:
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Collator redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Collator redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat
    • and 14 more flaws omitted
  • broken_links:
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://
    • Is currently http:// but can become https://

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Reflect/construct
Title: Reflect.construct()
Flaw count: 1

  • translation_differences:
    • Differences in the important macros (2 in common of 3 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER
Title: Number.MIN_SAFE_INTEGER
Flaw count: 1

  • translation_differences:
    • Differences in the important macros (2 in common of 3 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Error/stack
Title: Error.prototype.stack
Flaw count: 4

  • broken_links:
    • Can't resolve /zh-CN/docs/Tools/Debugger
    • Can use the English (en-US) link as a fallback
    • Is currently http:// but can become https://
    • Can't resolve /zh-CN/docs/Components.stack

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/encodeURI
Title: encodeURI()
Flaw count: 2

  • broken_links:
    • Is currently http:// but can become https://
  • translation_differences:
    • Differences in the important macros (3 in common of 4 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/RegExp
Title: RegExp(正则表达式)
Flaw count: 2

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/JavaScript/Guide/
    • Anchor not lowercase

URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/RegExp/RegExp
Title: RegExp() constructor
Flaw count: 1

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/API/DOMString/Binary

URL: /zh-CN/docs/Web/JavaScript/Reference/Statements/for...in
Title: for...in
Flaw count: 2

  • macros:
    • /zh-CN/docs/Web/JavaScript/Reference/Statements/for_each...in does not exist
  • translation_differences:
    • Differences in the important macros (3 in common of 4 possible)

URL: /zh-CN/docs/Web/JavaScript/Reference/Functions
Title: 函数
Flaw count: 16

  • broken_links:
    • Can't resolve /zh-CN/JavaScript/Reference/Global_Objects/Function
    • Can't resolve /zh-CN/JavaScript/Reference/Statements/return
    • Can't resolve /zh-CN/JavaScript/Reference/Operators/new
    • Can't resolve /zh-CN/JavaScript/Reference/Global_Objects/Object/constructor
    • Can't resolve /zh-CN/JavaScript/Reference/Operators/this
    • and 11 more flaws omitted

URL: /zh-CN/docs/Web/JavaScript/Reference/Functions/Arrow_functions
Title: 箭头函数
Flaw count: 1

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Functions/Rest_parameters

URL: /zh-CN/docs/Web/JavaScript/Reference/Functions/arguments/length
Title: arguments.length
Flaw count: 2

  • broken_links:
    • Can't resolve /zh-CN/docs/JavaScript/Reference/Global_Objects/Function/length
    • Can't resolve /zh-CN/docs/JavaScript/Reference/Global_Objects/Function/length

URL: /zh-CN/docs/Web/JavaScript/Reference/Functions/Method_definitions
Title: 方法的定义
Flaw count: 1

  • broken_links:
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/Web/JavaScript/Reference/Functions/get
Title: getter
Flaw count: 2

  • broken_links:
    • Is currently http:// but can become https://
    • Can't resolve https://developer.mozilla.org/zh-CN/docs/Mozilla/JavaScript_code_modules/XPCOMUtils.jsm#defineLazyGetter()

URL: /zh-CN/docs/Web/JavaScript/Reference/Classes
Title:
Flaw count: 3

  • broken_links:
    • No need for the pathname in anchor links if it's the same page
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/Web/JavaScript/Guide/Working_with_objects
Title: 使用对象
Flaw count: 12

  • macros:
    • wrong xref macro used (consider changing which macro you use)
  • broken_links:
    • Can't resolve /zh-CN/docs/Web/JavaScript/Guide/Details_of_the_Object_Model
    • Can't resolve /zh-CN/docs/JavaScript/Guide/Statements#for...in_Statement
    • Can't resolve /zh-CN/docs/JavaScript/ECMAScript_5_support_in_Mozilla
    • Can't resolve /zh-CN/docs/JavaScript/Reference/Statements/for...in
    • Can't resolve /zh-CN/docs/JavaScript/Reference/Global_Objects/Object/keys
    • and 6 more flaws omitted

URL: /zh-CN/docs/Web/JavaScript/Guide/Introduction
Title: 介绍
Flaw count: 11

  • macros:
    • /zh-CN/docs/Glossary/WWW does not exist but fell back to /en-US/docs/Glossary/World_Wide_Web
  • broken_links:
    • Can't resolve /zh-CN/Learn
    • Can't resolve /zh-CN/Learn
    • Can't resolve /zh-CN/docs/Web/JavaScript/Guide/Details_of_the_Object_Model
    • Is currently http:// but can become https://
    • Can't resolve /zh-CN/docs/Web/JavaScript/New_in_JavaScript
    • and 4 more flaws omitted
  • translation_differences:
    • Differences in the important macros (0 in common of 2 possible)

URL: /zh-CN/docs/Web/JavaScript/Guide/Keyed_collections
Title: 带键的集合
Flaw count: 2

  • broken_links:
    • Is currently http:// but can become https://
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Operators/Spread_operator

URL: /zh-CN/docs/Web/JavaScript/Guide/Grammar_and_types
Title: 语法和数据类型
Flaw count: 10

  • broken_links:
    • Anchor not lowercase
    • No need for the pathname in anchor links if it's the same page
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/null
    • Can't resolve /zh-CN/docs/JavaScript/Reference/Global_Objects/Object
    • and 5 more flaws omitted

URL: /zh-CN/docs/Web/JavaScript/Guide/Control_flow_and_error_handling
Title: 流程控制与错误处理
Flaw count: 4

  • broken_links:
    • No need for the pathname in anchor links if it's the same page
    • No need for the pathname in anchor links if it's the same page
    • Anchor not lowercase
    • Anchor not lowercase

URL: /zh-CN/docs/Web/JavaScript/Guide/Regular_expressions
Title: 正则表达式
Flaw count: 12

  • broken_links:
    • Can't resolve /zh-CN/docs/JavaScript/Reference/Global_Objects/RegExp
    • Can't resolve /zh-CN/docs/Web/JavaScript/Guide/Regular_expressions/Groups_and_Ranges
    • Can't resolve /zh-CN/docs/JavaScript/Reference/Global_Objects/RegExp
    • Can't resolve /zh-CN/docs/JavaScript/Reference/Global_Objects/RegExp/exec
    • Can use the English (en-US) link as a fallback
    • and 6 more flaws omitted
  • translation_differences:
    • Differences in the important macros (1 in common of 2 possible)

URL: /zh-CN/docs/Web/JavaScript/JavaScript_technologies_overview
Title: JavaScript 技术概览
Flaw count: 9

  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Mozilla/Projects/SpiderMonkey
    • Can't resolve /zh-CN/docs/Rhino
    • Is currently http:// but can become https://
    • and 4 more flaws omitted

URL: /zh-CN/docs/WebAssembly
Title: WebAssembly
Flaw count: 14

  • macros:
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • and 4 more flaws omitted
  • broken_links:
    • Can't resolve /zh-CN/docs/WebAssembly/C_to_wasm
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly
    • Can't resolve /zh-CN/docs/WebAssembly/Caching_modules
    • Can't resolve /zh-CN/docs/WebAssembly/Text_format_to_wasm
    • Can't resolve /zh-CN/docs/WebAssembly/Caching_modules

URL: /zh-CN/docs/WebAssembly/Using_the_JavaScript_API
Title: 使用 WebAssembly JavaScript API
Flaw count: 13

  • macros:
    • wrong xref macro used (consider changing which macro you use)
    • /zh-CN/docs/Web/JavaScript/Reference/Memory/grow does not exist
    • /zh-CN/docs/Web/JavaScript/Reference/WebAssembly/RangeError does not exist
    • wrong xref macro used (consider changing which macro you use)
    • /zh-CN/docs/Web/JavaScript/Reference/Memory/grow does not exist
    • and 1 more flaws omitted
  • broken_links:
    • Can't resolve /zh-CN/docs/WebAssembly/Text_format_to_wasm#初识文本格式
    • Anchor not lowercase
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • and 2 more flaws omitted

URL: /zh-CN/docs/WebAssembly/Concepts
Title: WebAssembly 概念
Flaw count: 6

  • broken_links:
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly
    • Can't resolve /zh-CN/docs/WebAssembly/Caching_modules
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Mozilla/Projects/Emscripten
    • Can't resolve /zh-CN/docs/WebAssembly/C_to_wasm
    • and 1 more flaws omitted

URL: /zh-CN/docs/WebAssembly/Loading_and_running
Title: 加载和运行 WebAssembly 代码
Flaw count: 11

  • macros:
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Instance/exports does not exist but fell back to /en-US/docs/WebAssembly/JavaScript_interface/Instance/exports
    • and 2 more flaws omitted
  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiate#Second_overload_example

URL: /zh-CN/docs/WebAssembly/Understanding_the_text_format
Title: 理解 WebAssembly 文本格式
Flaw count: 16

  • macros:
    • wrong xref macro used (consider changing which macro you use)
  • broken_links:
    • Can't resolve /zh-CN/docs/WebAssembly/Text_format_to_wasm
    • Can't resolve /zh-CN/docs/WebAssembly/Text_format_to_wasm
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiate
    • and 10 more flaws omitted

URL: /zh-CN/docs/WebAssembly/Exported_functions
Title: 导出的 WebAssembly 函数
Flaw count: 6

  • broken_links:
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table
    • Can use the English (en-US) link as a fallback
    • Can use the English (en-US) link as a fallback
    • and 1 more flaws omitted

URL: /zh-CN/docs/WebAssembly/JavaScript_interface
Title: WebAssembly
Flaw count: 21

  • macros:
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/LinkError does not exist but fell back to /en-US/docs/WebAssembly/JavaScript_interface/LinkError
    • and 16 more flaws omitted

URL: /zh-CN/docs/WebAssembly/JavaScript_interface/instantiate
Title: WebAssembly.instantiate()
Flaw count: 25

  • macros:
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • and 15 more flaws omitted
  • broken_links:
    • Can't resolve /zh-CN/docs/Web/JavaScript/Typed_arrays
    • Can't resolve /zh-CN/docs/WebAssembly/Caching_modules
    • Can't resolve /zh-CN/docs/Web/JavaScript/Typed_arrays
    • Can use the English (en-US) link as a fallback
    • Can't resolve /zh-CN/docs/WebAssembly/Caching_modules

URL: /zh-CN/docs/WebAssembly/JavaScript_interface/Global
Title: WebAssembly.Global
Flaw count: 4

  • macros:
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
  • broken_links:
    • Can't resolve /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Global
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/WebAssembly/JavaScript_interface/RuntimeError
Title: WebAssembly.RuntimeError()
Flaw count: 2

  • macros:
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Error/toSource redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Error/toString
  • broken_links:
    • Can't resolve /zh-CN/docs/Mozilla/Projects/SpiderMonkey

URL: /zh-CN/docs/WebAssembly/JavaScript_interface/CompileError
Title: WebAssembly.CompileError()
Flaw count: 2

  • macros:
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Error/toSource redirects to /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Error/toString
  • broken_links:
    • Can't resolve /zh-CN/docs/Mozilla/Projects/SpiderMonkey

URL: /zh-CN/docs/WebAssembly/JavaScript_interface/instantiateStreaming
Title: WebAssembly.instantiateStreaming()
Flaw count: 7

  • macros:
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • wrong xref macro used (consider changing which macro you use)
    • /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/LinkError does not exist but fell back to /en-US/docs/WebAssembly/JavaScript_interface/LinkError
    • and 1 more flaws omitted
  • broken_links:
    • Can use the English (en-US) link as a fallback

URL: /zh-CN/docs/WebAssembly/C_to_Wasm
Title: 编译 C/C++ 为 WebAssembly
Flaw count: 2

  • broken_links:
    • Is currently http:// but can become https://
    • Can use the English (en-US) link as a fallback
External URLs (75)

URL: /zh-CN/docs/Web/HTTP/Headers/Vary
Title: Vary


URL: /zh-CN/docs/Web/HTTP/Headers/Cache-Control
Title: Cache-Control


URL: /zh-CN/docs/Web/HTTP/Headers/Cross-Origin-Resource-Policy
Title: Cross-Origin-Resource-Policy


URL: /zh-CN/docs/Web/HTTP/Compression
Title: HTTP 协议中的数据压缩


URL: /zh-CN/docs/Web/HTTP/Content_negotiation/List_of_default_Accept_values
Title: Accept 默认值


URL: /zh-CN/docs/Web/HTTP/Status
Title: HTTP 响应状态码


URL: /zh-CN/docs/Web/MathML
Title: MathML


URL: /zh-CN/docs/Web/Progressive_web_apps/Tutorials/js13kGames/Installable_PWAs
Title: 让 PWA 易于安装


URL: /zh-CN/docs/Web/Progressive_web_apps/Tutorials/js13kGames/Re-engageable_Notifications_Push
Title: 通过通知推送让 PWA 可重用


URL: /zh-CN/docs/Web/HTML/Element/th
Title: <th>


URL: /zh-CN/docs/Web/HTML/Element/input
Title: <input>:输入(表单输入)元素


URL: /zh-CN/docs/Web/HTML/Element/tfoot
Title: <tfoot>


URL: /zh-CN/docs/Web/HTML/Element/slot
Title: <slot>


URL: /zh-CN/docs/Web/HTML/Element/style
Title: <style>


URL: /zh-CN/docs/Web/SVG/Tutorial
Title: SVG 教程


URL: /zh-CN/docs/Web/SVG/Tutorial/Introduction
Title: 引言


URL: /zh-CN/docs/Web/SVG/Tutorial/SVG_fonts
Title: SVG 字体


URL: /zh-CN/docs/Web/SVG/Tutorial/Paths
Title: 路径


URL: /zh-CN/docs/Web/JavaScript
Title: JavaScript


URL: /zh-CN/docs/Web/JavaScript/Reference/Operators/Operator_precedence
Title: 运算符优先级


URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy
Title: Proxy


URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Function/caller
Title: Function.caller


URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER
Title: Number.MIN_SAFE_INTEGER


URL: /zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Error/stack
Title: Error.prototype.stack


URL: /zh-CN/docs/Web/JavaScript/Reference/Functions/Default_parameters
Title: 默认参数值


URL: /zh-CN/docs/Web/JavaScript/Reference/Classes
Title:


URL: /zh-CN/docs/Web/JavaScript/Reference/Errors/Cyclic_object_value
Title: TypeError: cyclic object value


URL: /zh-CN/docs/Web/JavaScript/Guide/Keyed_collections
Title: 带键的集合


URL: /zh-CN/docs/Web/JavaScript/Guide/Regular_expressions
Title: 正则表达式


URL: /zh-CN/docs/Web/JavaScript/JavaScript_technologies_overview
Title: JavaScript 技术概览


URL: /zh-CN/docs/WebAssembly
Title: WebAssembly


URL: /zh-CN/docs/WebAssembly/Using_the_JavaScript_API
Title: 使用 WebAssembly JavaScript API


URL: /zh-CN/docs/WebAssembly/Concepts
Title: WebAssembly 概念


URL: /zh-CN/docs/WebAssembly/Loading_and_running
Title: 加载和运行 WebAssembly 代码


URL: /zh-CN/docs/WebAssembly/Understanding_the_text_format
Title: 理解 WebAssembly 文本格式


URL: /zh-CN/docs/WebAssembly/Exported_functions
Title: 导出的 WebAssembly 函数


URL: /zh-CN/docs/WebAssembly/JavaScript_interface
Title: WebAssembly


URL: /zh-CN/docs/WebAssembly/JavaScript_interface/Global
Title: WebAssembly.Global


URL: /zh-CN/docs/WebAssembly/C_to_Wasm
Title: 编译 C/C++ 为 WebAssembly

(comment last updated: 2023-09-02 01:28:11)

@hanyujie2002 hanyujie2002 reopened this Sep 2, 2023
@hanyujie2002 hanyujie2002 marked this pull request as ready for review September 2, 2023 01:22
@hanyujie2002 hanyujie2002 requested a review from a team as a code owner September 2, 2023 01:22
@hanyujie2002 hanyujie2002 requested review from jasonren0403 and removed request for a team September 2, 2023 01:22
…t_values/index.md

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@hanyujie2002 hanyujie2002 changed the title batch space fix part 3 zh-cn: batch space fix part 3 Sep 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
l10n-zh Issues related to Chinese content.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant