mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-28 19:43:31 +08:00
9 lines
420 B
HTML
9 lines
420 B
HTML
<section class="article-content">
|
|
<!-- Refer to https://discourse.gohugo.io/t/responsive-tables-in-markdown/10639/5 -->
|
|
{{ $wrappedTable := printf "<div class=\"table-wrapper\">${1}</div>" }}
|
|
{{ if or .Params.math .Site.Params.article.math }}
|
|
{{ partial "article/components/mdtexbug" . }}
|
|
{{ end }}
|
|
{{ .Content | replaceRE "(<table>(?:.|\n)+?</table>)" $wrappedTable | safeHTML }}
|
|
</section>
|