在主题目录下新建 layouts/shortcodes/spoiler.html ,内容如下:

<details>
<summary>
	<strong>
    {{ with .Get 0}}{{.}}{{else}}click to expand{{ end }}
  </strong>
</summary>
{{.Inner}}
</details>

在文章中使用以下格式:

{{< spoiler "标题" >}} 隐藏文本,支持HTML代码 {{< /spoiler >}}