update tables & some fix

This commit is contained in:
2023-06-25 21:11:33 +03:00
parent 82469bbf98
commit 694a426dc6
11 changed files with 46 additions and 29 deletions

View File

@ -0,0 +1,6 @@
{{ $htmlTable := .Inner | markdownify }}
{{ $class := .Get 0 }}
{{ $old := "<table>" }}
{{ $new := printf "<table class=\"%s\">" $class }}
{{ $htmlTable := replace $htmlTable $old $new }}
{{ $htmlTable | safeHTML }}