diff --git a/aio/tools/transforms/templates/lib/githubLinks.html b/aio/tools/transforms/templates/lib/githubLinks.html index 5f66e96e23..77b167d4ed 100644 --- a/aio/tools/transforms/templates/lib/githubLinks.html +++ b/aio/tools/transforms/templates/lib/githubLinks.html @@ -3,14 +3,14 @@ {%- endmacro %} {% macro githubViewHref(doc, versionInfo) -%} -{% set githubUrl = 'https://github.com/' + versionInfo.gitRepoInfo.owner + '/' + versionInfo.gitRepoInfo.repo -%} +{% set githubUrl = 'https://github.com/' + versionInfo.gitRepoInfo.owner + '/' + 'angular-cn' -%} {% set version = versionInfo.currentVersion.isSnapshot and versionInfo.currentVersion.SHA or versionInfo.currentVersion.raw -%} {% set lineInfo = doc.startingLine and ('#L' + (doc.startingLine + 1) + '-L' + (doc.endingLine + 1)) or '' -%} {$ githubUrl $}/tree/{$ version $}/{$ projectRelativePath(doc.fileInfo) $}{$ lineInfo $} {%- endmacro %} {% macro githubEditHref(doc, versionInfo, pathPrefix) -%} -{% set githubUrl = 'https://github.com/' + versionInfo.gitRepoInfo.owner + '/' + versionInfo.gitRepoInfo.repo -%} +{% set githubUrl = 'https://github.com/' + versionInfo.gitRepoInfo.owner + '/' + 'angular-cn' -%} {% set lineInfo = doc.startingLine and ('#L' + (doc.startingLine + 1) + '-L' + (doc.endingLine + 1)) or '' -%} {$ githubUrl $}/edit/aio/{$ projectRelativePath(doc.fileInfo) $}?message=docs {%- if doc.moduleDoc %}({$ doc.moduleDoc.id.split('/')[0] $})