diff options
author | amzrk2 | 2020-07-19 18:55:37 +0800 |
---|---|---|
committer | amzrk2 | 2020-07-19 18:55:37 +0800 |
commit | 007f3ba1c9a9a80a13156bd148cc4ad87af8c5a9 (patch) | |
tree | 0219a4e7b7407fc32f751939a33d965e52138153 /layouts | |
parent | ca1b39119cd3551797e2e1b14c2166b5d694cde9 (diff) | |
download | hugo-theme-fuji-007f3ba1c9a9a80a13156bd148cc4ad87af8c5a9.tar.gz hugo-theme-fuji-007f3ba1c9a9a80a13156bd148cc4ad87af8c5a9.tar.bz2 hugo-theme-fuji-007f3ba1c9a9a80a13156bd148cc4ad87af8c5a9.zip |
Dense table support
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/shortcodes/table-dense.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/layouts/shortcodes/table-dense.html b/layouts/shortcodes/table-dense.html new file mode 100644 index 0000000..6c77418 --- /dev/null +++ b/layouts/shortcodes/table-dense.html @@ -0,0 +1,3 @@ +{{ $htmlTable := .Inner | markdownify }} +{{ $htmlTable := replace $htmlTable "<table>" "<table class=\"table-dense\">" }} +{{ $htmlTable | safeHTML }}
\ No newline at end of file |