Switch theme to Doks
This commit is contained in:
14
layouts/shortcodes/table.html
Normal file
14
layouts/shortcodes/table.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{{ $htmlTable := .Inner | markdownify }}
|
||||
{{ $class := .Get 0 }}
|
||||
{{ $old := "<table>" }}
|
||||
{{ $new := printf "<table class=\"%s\">" $class }}
|
||||
{{ $htmlTable := replace $htmlTable $old $new }}
|
||||
{{ $old_item := "<td>" }}
|
||||
{{ $old_thr := "<th>" }}
|
||||
{{ $thr_class := "fw6 bb b--black-20 tl pb3 pr3 " }}
|
||||
{{ $item_class := "pv3 pr3 bb b--black-20" }}
|
||||
{{ $new_item := printf "<td class=\"%s\">" $item_class }}
|
||||
{{ $new_thr := printf "<th class=\"%s\">" $thr_class }}
|
||||
{{ $htmlTable := replace $htmlTable $old_item $new_item }}
|
||||
{{ $htmlTable := replace $htmlTable $old_thr $new_thr }}
|
||||
{{ $htmlTable | safeHTML }}
|
||||
Reference in New Issue
Block a user