File tree Expand file tree Collapse file tree 4 files changed +36
-0
lines changed
hugo-modules/core/utils/rich-text/blocks Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ {{- $globals := .globals -}}
2
+ {{- $context := .context -}}
3
+
4
+ < td >
5
+ {{- partial "utils/rich-text/get-block" (dict
6
+ "context" $context
7
+ "globals" $globals
8
+ ) -}}
9
+ </ td >
Original file line number Diff line number Diff line change
1
+ {{- $globals := .globals -}}
2
+ {{- $context := .context -}}
3
+
4
+ < th >
5
+ {{- partial "utils/rich-text/get-block" (dict
6
+ "context" $context
7
+ "globals" $globals
8
+ ) -}}
9
+ </ th >
Original file line number Diff line number Diff line change
1
+ {{- $globals := .globals -}}
2
+ {{- $context := .context -}}
3
+
4
+ < tr >
5
+ {{- partial "utils/rich-text/get-block" (dict
6
+ "context" $context
7
+ "globals" $globals
8
+ ) -}}
9
+ </ tr >
Original file line number Diff line number Diff line change
1
+ {{- $globals := .globals -}}
2
+ {{- $context := .context -}}
3
+
4
+ < table >
5
+ {{- partial "utils/rich-text/get-block" (dict
6
+ "context" $context
7
+ "globals" $globals
8
+ ) -}}
9
+ </ table >
You can’t perform that action at this time.
0 commit comments