mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
cbc1986c6f
Fixes #18353
8 lines
529 B
HTML
8 lines
529 B
HTML
{% macro githubHref(doc, versionInfo) -%}
|
|
https://github.com/{$ versionInfo.gitRepoInfo.owner $}/{$ versionInfo.gitRepoInfo.repo $}/tree/{$ versionInfo.currentVersion.isSnapshot and versionInfo.currentVersion.SHA or versionInfo.currentVersion.raw $}/packages/{$ doc.fileInfo.realProjectRelativePath $}#L{$ doc.startingLine + 1 $}-L{$ doc.endingLine + 1 $}
|
|
{%- endmacro %}
|
|
|
|
{% macro githubViewLink(doc, versionInfo) -%}
|
|
<a href="{$ githubHref(doc, versionInfo) $}">{$ doc.fileInfo.realProjectRelativePath $}</a>
|
|
{%- endmacro %}
|