Skip to content

Commit

Permalink
Update introduction.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jmooring authored Sep 26, 2024
1 parent 906b7c6 commit c2fe915
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/templates/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,11 @@ Remember that the piped value becomes the final argument to the function or meth
You can split a template action over two or more lines. For example, these are equivalent:

```go-html-template
{{ $v := or .Site.Language.LanguageName .Site.Language.Lang }}
{{ $v := or $arg1 $arg2 }}
{{ $v := or
.Site.Language.LanguageName
.Site.Language.Lang
$arg1
$arg2
}}
```

Expand Down

0 comments on commit c2fe915

Please sign in to comment.