mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-02-12 06:43:30 +08:00
7 lines
418 B
HTML
7 lines
418 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>" }}
|
|
{{ $wrappedInlineCodeBlock := printf "<span>${1}</span>" }}
|
|
{{ .Content | replaceRE "(<table>(?:.|\n)+?</table>)" $wrappedTable | replaceRE "(<code>.*?</code>)" $wrappedInlineCodeBlock | safeHTML }}
|
|
</section>
|