Files
FixIt/layouts/shortcodes/echarts.html
T
2024-04-24 20:14:17 +08:00

8 lines
403 B
HTML

{{- $content := .Inner | transform.Unmarshal | jsonify -}}
{{- $width := cond .IsNamedParams (.Get "width") (.Get 0) | default "100%" -}}
{{- $height := cond .IsNamedParams (.Get "height") (.Get 1) | default "30rem" -}}
{{- $attrs := printf `style="width: %v; height: %v;"` $width $height -}}
<div class="echarts" {{ $attrs | safeHTMLAttr }}></div>
<template>{{ $content }}</template>
{{- /* EOF */ -}}