Skip to content

Commit 745992e

Browse files
authored
Merge pull request rails#49640 from mguan2020/branch_new
Added link further explaining ERB in the 'Getting Started' documentation [ci skip]
2 parents c1489a8 + afa59c3 commit 745992e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/source/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ file, and replace its contents with:
560560
</ul>
561561
```
562562

563-
The above code is a mixture of HTML and *ERB*. ERB is a templating system that
563+
The above code is a mixture of HTML and *ERB*. ERB, short for [Embedded Ruby](https://docs.ruby-lang.org/en/3.2/ERB.html), is a templating system that
564564
evaluates Ruby code embedded in a document. Here, we can see two types of ERB
565565
tags: `<% %>` and `<%= %>`. The `<% %>` tag means "evaluate the enclosed Ruby
566566
code." The `<%= %>` tag means "evaluate the enclosed Ruby code, and output the

0 commit comments

Comments
 (0)