Skip to content

Commit afa59c3

Browse files
committed
Add link providing more details about ERB in the 'Getting Started' documentation [ci skip]
Co-Authored-By: Akhil G Krishnan <[email protected]> Add link providing more details about ERB in the 'Getting Started' documentation [ci skip] Co-Authored-By: Akhil G Krishnan <[email protected]> Fix link to point to html [ci skip] Co-authored-by: Rafael Mendonça França <[email protected]> Revert "Merge branch 'branch_new' of https://github.com/mguan2020/rails into pr/49640" This reverts commit 94b8c7d579a74c528c4a85f3ce0f0853c4883fd1, reversing changes made to 1353ca902f260dfb9bbe7680ede2650a670f659f. Revert "Revert "Merge branch 'branch_new' of https://github.com/mguan2020/rails into pr/49640"" This reverts commit e9ced85c8f6afe0bc057bc6d8d4387718a7c3916.
1 parent a475175 commit afa59c3

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
@@ -558,7 +558,7 @@ file, and replace its contents with:
558558
</ul>
559559
```
560560

561-
The above code is a mixture of HTML and *ERB*. ERB is a templating system that
561+
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
562562
evaluates Ruby code embedded in a document. Here, we can see two types of ERB
563563
tags: `<% %>` and `<%= %>`. The `<% %>` tag means "evaluate the enclosed Ruby
564564
code." The `<%= %>` tag means "evaluate the enclosed Ruby code, and output the

0 commit comments

Comments
 (0)