fix: fix broken rendering of nested buttons (#443)

This commit is contained in:
Robert Kaussow 2022-06-24 10:54:16 +02:00 committed by GitHub
parent 09bb615cfc
commit 580ea885e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,26 +1,26 @@
{{ $ref := "" }}
{{ $target := "" }}
{{ $size := default "regular" (.Get "size" | lower) }}
{{- $ref := "" }}
{{- $target := "" }}
{{- $size := default "regular" (.Get "size" | lower) }}
{{ if not (in (slice "regular" "large") $size) }}
{{ $size = "regular" }}
{{ end }}
{{- if not (in (slice "regular" "large") $size) }}
{{- $size = "regular" }}
{{- end }}
{{ with .Get "href" }}
{{ $ref = . }}
{{ $target = "_blank" }}
{{ end }}
{{- with .Get "href" }}
{{- $ref = . }}
{{- $target = "_blank" }}
{{- end }}
{{ with .Get "relref" }}
{{ $ref = relref $ . }}
{{ end }}
{{- with .Get "relref" }}
{{- $ref = relref $ . }}
{{- end }}
<span class="gdoc-button gdoc-button--{{ $size }}{{ with .Get "class" }}{{ . }}{{ end }}">
<a
{{ with $ref }}href="{{ . }}"{{ end }}
{{ with $target }}target="{{ . }}"{{ end }}
class="gdoc-button__link"
{{- with $ref }}{{ printf " href=\"%s\"" . | safeHTMLAttr }}{{ end }}
{{- with $target }}{{ printf " target=\"%s\"" . | safeHTMLAttr }}{{ end }}
>
{{ $.Inner }}
</a>