Add a new shortcode for referencing lines in a GitHub repo

Including Chapel as a submodule would add 1GB to clones.
This commit is contained in:
2023-10-09 14:40:07 -07:00
parent 502190055d
commit b5761d4d81
3 changed files with 20 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
{{ if eq .from .to }}
{{ .scratch.Set "comment" (printf ", line %d" .from) }}
{{ else }}
{{ if eq .from 0 }}
{{ .scratch.Set "comment" (printf ", around line %d" .to) }}
{{ else }}
{{ .scratch.Set "comment" (printf ", lines %d through %d" .from .to) }}
{{ end }}
{{ end }}