mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 19:06:16 +01:00
8 lines
487 B
HTML
8 lines
487 B
HTML
{{- $scratch := .Page.Scratch.Get "scratch" -}}
|
|
|
|
{{- $content := .Inner | transform.Unmarshal | jsonify -}}
|
|
{{- $id := partial "function/id.html" (dict "content" $content "scratch" $scratch) -}}
|
|
{{- $width := cond .IsNamedParams (.Get "width") (.Get 0) | default "100%" -}}
|
|
{{- $height := cond .IsNamedParams (.Get "height") (.Get 1) | default "30rem" -}}
|
|
<div class="echarts" id="{{ $id }}" style="width: {{ $width }}; height: {{ $height }};"></div>
|
|
{{- $scratch.Set "echarts" true -}}
|