2019-08-20 20:12:18 -07:00
|
|
|
{{ $s := (readFile (printf "code/%s" (.Get 1))) }}
|
|
|
|
{{ $t := split $s "\n" }}
|
2019-08-26 18:48:12 -07:00
|
|
|
{{ if not (eq (int (.Get 2)) 1) }}
|
|
|
|
{{ .Scratch.Set "u" (after (sub (int (.Get 2)) 1) $t) }}
|
|
|
|
{{ else }}
|
|
|
|
{{ .Scratch.Set "u" $t }}
|
|
|
|
{{ end }}
|
|
|
|
{{ $v := first (add (sub (int (.Get 3)) (int (.Get 2))) 1) (.Scratch.Get "u") }}
|
2019-08-20 20:12:18 -07:00
|
|
|
{{ highlight (delimit $v "\n") (.Get 0) "" }}
|