{{ $error := false -}} {{ if partial "utilities/IsInvalidArgs.html" (dict "structure" "docs" "args" .Params) }} {{ errorf "Invalid arguments: %s" .Position -}} {{ $error = true }} {{ end }} {{- $name := .Get "name" | default "" -}} {{- $basePath := .Site.Params.docs.basePath -}} {{- $file := .Get "file" | default "" -}} {{- if hasPrefix $file "./" -}} {{- $file = path.Clean $file -}} {{- else -}} {{- $file = path.Join $basePath (path.Clean $file) -}} {{- end -}} {{- $extension := strings.TrimLeft "." (path.Ext $file) }} {{- $capture_start := "" -}} {{- $capture_end := "" -}} {{- $id := .Get "id" | default (printf "docs-collapse-%d" .Ordinal) -}} {{- $supportedExtensions := slice "js" "scss" "toml" -}} {{- if in $supportedExtensions $extension -}} {{- if eq $extension "toml" }} {{- $capture_start = printf "# toml-docs-start %s" $name -}} {{- $capture_end = printf "# toml-docs-end %s" $name -}} {{- else -}} {{- $capture_start = printf "// %s-docs-start %s" $extension $name -}} {{- $capture_end = printf "// %s-docs-end %s" $extension $name -}} {{- end -}} {{- else -}} {{- errorf "File format not supported (line %s): %s" .Position $file -}} {{- end -}} {{ $show := .Get "show" | default true -}} {{ $full := .Get "full" | default true -}} {{- $class := .Get "class" | default "" -}} {{- if not $error -}} {{- /* Force-check if the file exists */ -}} {{ $tmp := os.Stat $file }} {{- $regex := printf `%s((?:.|\n)*)%s` $capture_start $capture_end -}} {{- $match := findRE $regex (readFile $file) -}} {{- $match = index $match 0 -}} {{- if not $match -}} {{- errorf "%s: %q: Got no matches for name=%q in file=%q!" .Position .Name $name $file -}} {{- end -}} {{- $match = replace $match $capture_start "" -}} {{- $match = replace $match $capture_end "" -}}