2020-02-27 13:14:40 +01:00
|
|
|
{{- $scratch := .Page.Scratch.Get "scratch" -}}
|
|
|
|
|
|
|
|
{{- $content := .Inner | transform.Unmarshal | jsonify -}}
|
|
|
|
{{- $id := partial "function/id.html" (dict "content" $content "scratch" $scratch) -}}
|
2020-03-21 13:52:12 +01:00
|
|
|
{{- $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>
|
2020-03-21 09:59:23 +01:00
|
|
|
{{- $scratch.Set "echarts" true -}}
|