Remove redundant markdownify funcs

This commit is contained in:
Will Faught
2023-01-19 20:39:11 -08:00
parent 0d858e9b61
commit fc707a7b38
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{{ $align := .Get "align" }}
{{ $caption := .Get 0 | default (.Get "caption") }}
{{ $content := .Inner | markdownify }}
{{ $content := .Inner }}
{{ $float := .Get "float" }}
{{ $height := .Get "height" }}
{{ $justify := .Get "justify" }}

View File

@@ -1,6 +1,6 @@
{{ $align := .Get "align" }}
{{ $caption := .Get "caption" | markdownify }}
{{ $content := .Inner | markdownify }}
{{ $content := .Inner }}
{{ $float := .Get "float" }}
{{ $height := .Get "height" }}
{{ $justify := .Get "justify" }}