highlight: handle string options in funnel file #169

as it may happen to be called with string options in case of documented `partial (compat)` mode
This commit is contained in:
Sören Weber 2023-06-22 17:34:04 +02:00
parent 047606ff45
commit 7e073f9681
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
2 changed files with 11 additions and 11 deletions

View file

@ -12,7 +12,14 @@
{{- else if eq $k "content" }}
{{- $content = trim $v "\n\r" }}
{{- else if eq $k "options" }}
{{- $options = $v }}
{{- if eq (printf "%T" $v) "string" }}
{{- range (split $v ",") }}
{{- $pair := split . "=" }}
{{- $options = $options | merge (dict (index $pair 0) (index $pair 1)) }}
{{- end }}
{{- else }}
{{- $options = $v }}
{{- end }}
{{- else if eq $k "type" }}
{{- $type = $v }}
{{- else if eq $k "wrap" }}
@ -27,7 +34,7 @@
{{- if eq $k "wrap" }}
{{- $otherAttributes = (dict $k $v) | merge $otherAttributes }}
{{- else }}
{{- $otherOptions = $otherOptions | merge (dict $k $v) }}
{{- $otherOptions = (dict $k $v) | merge $otherOptions }}
{{- end }}
{{- end }}
{{- $options = $otherOptions }}

View file

@ -9,27 +9,20 @@
{{- end }}
{{- $attributes := dict }}
{{- $options := dict }}
{{- $stringOptions := "" }}
{{- $otherOptions := dict }}
{{- $type := "" }}
{{- range $k, $v := .Params }}
{{- if eq $k 0 }}
{{- $type = $v }}
{{- else if eq $k 1 }}
{{- $stringOptions = trim $v "\n\r\t " }}
{{- $options = $v }}
{{- else if eq $k "type" }}
{{- $type = $v }}
{{- else if eq $k "wrap" }}
{{- $attributes = $attributes | merge (dict $k $v) }}
{{- else }}
{{- $otherOptions = $otherOptions | merge (dict $k $v) }}
{{- $options = $options | merge (dict $k $v) }}
{{- end }}
{{- end }}
{{- range (split $stringOptions ",") }}
{{- $pair := split . "=" }}
{{- $options = $options | merge (dict (index $pair 0) (index $pair 1)) }}
{{- end }}
{{- $options = $options | merge $otherOptions }}
{{- partial "shortcodes/highlight.html" (dict
"context" .Page
"attributes" $attributes