Skip to content

Commit 15a64bf

Browse files
committed
Fix missing sections in Expressions page
This was caused by the following error: ``` Hydration completed but contains mismatches. ``` Probably caused by inlining the Example-component. The other languages already had this fix in place.
1 parent c94e75f commit 15a64bf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/guide/expressions.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ Handlebars expressions can also be dot-separated paths.
3131
This expression looks up the `person` property in the input object and in turn looks up the `firstname` and `lastname`
3232
property within the `person` object.
3333

34-
Pass the below input object to the template <Example examplePage="/examples/path-expressions-dot.md" show="input" />
34+
Pass the below input object to the template
3535

36-
Output will be generated as below <Example examplePage="/examples/path-expressions-dot.md" show="output" />
36+
<Example examplePage="/examples/path-expressions-dot.md" show="input" />
37+
38+
Output will be generated as below
39+
40+
<Example examplePage="/examples/path-expressions-dot.md" show="output" />
3741

3842
Handlebars also supports a deprecated `/` syntax, so you could write the above template as:
3943

0 commit comments

Comments
 (0)