mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
shortcodes: add more deprecation warnings #598
This commit is contained in:
parent
9555614ac4
commit
72f08f142b
3 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
||||||
{{- $_hugo_config := `{ "version": 1 }` }}
|
{{- $_hugo_config := `{ "version": 1 }` }}
|
||||||
|
{{- if (.Get "icon-position") }}
|
||||||
|
{{- warnf "%q: DEPRECATED parameter 'icon-position' for shortcode 'button' found, use 'iconposition' instead" .Page.File.Path }}
|
||||||
|
{{- end }}
|
||||||
{{- partial "shortcodes/button.html" (dict
|
{{- partial "shortcodes/button.html" (dict
|
||||||
"page" .Page
|
"page" .Page
|
||||||
"color" (.Get "color")
|
"color" (.Get "color")
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
{{- if (.Get "showfirstheading") }}
|
||||||
|
{{- warnf "%q: UNSUPPORTED parameter 'showfirstheading' for shortcode 'include' found, use 'hidefirstheading' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#420-2022-06-23" .Page.File.Path }}
|
||||||
|
{{- end }}
|
||||||
{{- partial "shortcodes/include.html" (dict
|
{{- partial "shortcodes/include.html" (dict
|
||||||
"page" .Page
|
"page" .Page
|
||||||
"file" (.Get "file" | default (.Get 0))
|
"file" (.Get "file" | default (.Get 0))
|
||||||
|
|
|
@ -3,7 +3,10 @@
|
||||||
{{- $major := int (index $version 0) }}
|
{{- $major := int (index $version 0) }}
|
||||||
{{- $minor := int (index $version 1) }}
|
{{- $minor := int (index $version 1) }}
|
||||||
{{- $color := (.Get "color") }}
|
{{- $color := (.Get "color") }}
|
||||||
{{- $groupid := (.Get "groupid") }}
|
{{- $groupid := ((.Get "groupid") | default (.Get "groupId")) }}
|
||||||
|
{{- if (.Get "groupId") }}
|
||||||
|
{{- warnf "%q: DEPRECATED parameter 'groupId' for shortcode 'tabs' found, use 'groupid' instead" .Page.File.Path }}
|
||||||
|
{{- end }}
|
||||||
{{- $icon := (.Get "icon") }}
|
{{- $icon := (.Get "icon") }}
|
||||||
{{- $style := (.Get "style") }}
|
{{- $style := (.Get "style") }}
|
||||||
{{- $title := (.Get "title") }}
|
{{- $title := (.Get "title") }}
|
||||||
|
|
Loading…
Reference in a new issue