fix center-quote shortcode when config unsafe = false

when config unsafe = false, center-quote without markdown works but shortcode with markdown doesn't work.

the following doesn't work when unsafe = false:
```
{{% center-quote %}}
**hello** *world*
this is a center-quote shortcode example.
{{% /center-quote %}}
```

with this fix, the following works with markdown when unsafe = false:
```
{{< center-quote >}}
**hello** *world*
this is a center-quote shortcode example.
{{< /center-quote >}}
```
This commit is contained in:
Abdul Halim Daud
2022-07-19 23:48:50 +08:00
committed by Cell
parent cd49374911
commit cd036e5625
+1 -1
View File
@@ -1,3 +1,3 @@
<blockquote class="blockquote-center">
{{ .Inner }}
{{ .Inner | .Page.RenderString }}
</blockquote>