You must login to view /lordwelch/router7/src/commit/0784da4bb97caa54b7e3c2e082aa4c9d72bf8edb/internal.
The GitHub option should be usable for most people, it only links via username.

Files
router7/website/layouts/shortcodes/table.html

7 lines
216 B
HTML

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