mirror of
https://github.com/docker/docs.git
synced 2026-04-13 23:06:15 +07:00
13 lines
325 B
HTML
13 lines
325 B
HTML
{{ $title := "" }}
|
|
{{ if .LinkTitle }}
|
|
{{ $title = .LinkTitle }}
|
|
{{ else }}
|
|
{{ $title = index (findRE `# .*` .RawContent) 0 | strings.TrimLeft "# " }}
|
|
{{ if not $title }}
|
|
{{ with .File }}
|
|
{{ $title = strings.ReplaceRE "[-_]" " " .TranslationBaseName }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ return $title }}
|