You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but that doesn't exist in zh-CN yet, we have a chance to fall back to en-US.
The Broken link checker always runs. If set, it also spits out a flaw. But every href value is checked.
And in the builder, we do have access to the translationsOf Map object so it's cheap to look up something. Like:
if (!exists('/zh-cn/docs/web/css/new-property')) {
// But there's hope in English!
if (exists('/en-us/docs/web/css/new-property')) {
// Rewrite the <a href> and possibly add a tooltip or a extra class name
...
}
}
The text was updated successfully, but these errors were encountered:
See #3053 which this issue can be blocked by.
If there's a pure HTML link like:
but that doesn't exist in
zh-CN
yet, we have a chance to fall back toen-US
.The Broken link checker always runs. If set, it also spits out a flaw. But every
href
value is checked.And in the builder, we do have access to the
translationsOf
Map object so it's cheap to look up something. Like:The text was updated successfully, but these errors were encountered: