{{/* Custom Hugo table shortcode which renders tables by: 1. Reads table definition and data from a structured (JSON, TOML, or YAML) data file in the site data directory. 2. Renders the table using CSS classes rather than inline styles. Why does this shortcode exist? 1. The default Markdown table markup in Hugo is horrible for anything more than rudimentary tables. 2. The default Markdown table renderer in Hugo does not give you a way to set cell alignment without using inline styles, which means enabling `unsafe-inline` in your `Content-Security-Policy` header. 3. I prever specifying table contents in an external structured file rather than inline. Features: * Sets reasonable default `title` and `aria-label` attributes on table, column headers, and cells. * Annotates column headers and cells with coordinate and column ID data attributes for easy styling. * Add an optional table caption. * Add optional table, header, row, and cell IDs. * Specify cell alignment on a per-column or per-cell basis, * Specify custom table, row, and cell CSS classes. * Use a custom `data-` attribute prefix to prevent collisions. * Render cell values as markup or raw HTML. By default this shortcode renders using Bulma classes, but that can be changed by setting individual CSS classes in the `params.table_shortcode` section of the site's `config.toml`. ... TODO: move documentation to README.md, document all options ... Notes: * IDs keys that begin with "_" should not be used, because we use them to set some option. * document `params.table_shortcode` TOML options * document cell values as literal or as dict (latter allows custom alignment, id, colspan, and rowspan, class) * row tooltip with _row and id with _id Example: {{< table "favorite-fruits" "fruits" >}} And the corresponding `data/favorite-fruits/fruits.yaml`: --- # table name (required) name: "Favorite Fruits" # column list (required) cols: - id: "name" name: "Name" - id: "color" name: "Color" - id: "description" name: "Description" # table rows (required) rows: - name: "Apple" color: "Red or Green" description: "Sweet if red, or sour if green." - name: "Banana" color: "Yellow" description: "Skin is slipping hazard on floor." - name: "Orange" color: "Orange" description: "Citrus bonanza." - name: "Peach" color: "Orange" description: "Don't eat the core!" This shortcode will render the following table: ... (other rows omitted for brevity) ...
My favorite fruits.
Name Color Description
Apple Red or Green Sweet if red, or sour if green.
You can also configure alignment on a per-column or per-cell basis, and you can override the `class` attribute for individual cells. */}} {{/* get config from site params (default to bulma) */}} {{- $config := default (dict "data_prefix" "" "table_base_css" "table" "cell_align_left" "has-text-left" "cell_align_center" "has-text-centered" "cell_align_justified" "has-text-justified" "cell_align_right" "has-text-right") $.Site.Params.table_shortcode -}} {{/* get data prefix */}} {{- $dp := $config.data_prefix | safeHTMLAttr -}} {{/* get table data */}} {{- $table := (index .Site.Data.tables (.Get 0) (.Get 1)) -}} {{- if $table.caption -}} {{/* render caption */}} {{- end -}} {{/* render table headers */}} {{- range $x, $col := $table.cols -}} {{/* set default css */}} {{- $css := "" -}} {{/* get alignment */}} {{- $align := default "" $col.align -}} {{- if eq $align "left" -}} {{- $css = $config.cell_align_left -}} {{- else if eq $align "center" -}} {{- $css = $config.cell_align_center -}} {{- else if eq $align "justified" -}} {{- $css = $config.cell_align_justified -}} {{- else if eq $align "right" -}} {{- $css = $config.cell_align_right -}} {{- end -}} {{- end -}} {{- if $table.rows -}} {{/* render rows */}} {{- range $y, $row := $table.rows -}} {{- range $x, $col := $table.cols -}} {{/* get cell */}} {{- $cell := index $row $col.id -}} {{- $is_map := reflect.IsMap $cell -}} {{/* get cell value */}} {{- $val := "" -}} {{- if $is_map -}} {{- $val = index $cell "val" -}} {{- else -}} {{- $val = $cell -}} {{- end -}} {{/* get cell ID */}} {{- $cell_id := "" -}} {{- if $is_map -}} {{- if index $cell "id" -}} {{- $cell_id = $cell.id -}} {{- end -}} {{- end -}} {{/* get cell tip */}} {{- $tip := (default $col.name $col.tip) -}} {{- if $is_map -}} {{- if index $cell "tip" -}} {{- $tip = index $cell "tip" -}} {{- end -}} {{- end -}} {{/* get cell alignment */}} {{- $align := $col.align -}} {{- if and $is_map -}} {{- if (index $cell "align") -}} {{- $align = index $cell "align" -}} {{- end -}} {{- end -}} {{/* get default cell css */}} {{- $css := "" -}} {{- if eq $align "left" -}} {{- $css = $config.cell_align_left -}} {{- else if eq $align "center" -}} {{- $css = $config.cell_align_center -}} {{- else if eq $align "justified" -}} {{- $css = $config.cell_align_justified -}} {{- else if eq $align "right" -}} {{- $css = $config.cell_align_right -}} {{- end -}} {{/* get cell css override */}} {{- if $is_map -}} {{- if index $cell "css" -}} {{- $css = $cell.css -}} {{- end -}} {{- end -}} {{/* get colspan */}} {{- $colspan := 1 -}} {{- if $is_map -}} {{- if index $cell "colspan" -}} {{- $colspan = $cell.colspan -}} {{- end -}} {{- end -}} {{/* get rowspan */}} {{- $rowspan := 1 -}} {{- if $is_map -}} {{- if index $cell "rowspan" -}} {{- $rowspan = $cell.rowspan -}} {{- end -}} {{- end -}} {{/* emit cell */}} {{- end -}} {{- end -}} {{- end -}}
{{- $table.caption -}}
{{- $col.name -}}
{{- if $is_map -}} {{- if $cell.html -}} {{/* render as raw HTML */}} {{- $val | safeHTML -}} {{- else -}} {{/* render as markup */}} {{- $val | $.Page.RenderString -}} {{- end -}} {{- else -}} {{/* render as markup */}} {{- $val | $.Page.RenderString -}} {{- end -}}