aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorNishant Modak <modak.nishant@gmail.com>2014-07-09 01:32:44 +0530
committerNishant Modak <modak.nishant@gmail.com>2014-07-09 01:32:44 +0530
commitda5ac718859fe7eac599574334431348fc3e4361 (patch)
tree48025c435a16a4e01d044716aeb7bc1ef722a232 /guides/source/getting_started.md
parent590091bc2096103c3ff32e9ddf0196bdee384e7e (diff)
downloadrails-da5ac718859fe7eac599574334431348fc3e4361.tar.gz
rails-da5ac718859fe7eac599574334431348fc3e4361.tar.bz2
rails-da5ac718859fe7eac599574334431348fc3e4361.zip
correct markdown usage [ci skip]
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 4728e59bc8..669e1eefac 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -450,9 +450,7 @@ available, Rails errors out.
In the above image, the bottom line has been truncated. Let's see what the full
thing looks like:
-<blockquote>
-Missing template articles/new, application/new with {locale:[:en], formats:[:html], handlers:[:erb, :builder, :coffee]}. Searched in: * "/path/to/blog/app/views"
-</blockquote>
+>Missing template articles/new, application/new with {locale:[:en], formats:[:html], handlers:[:erb, :builder, :coffee]}. Searched in: * "/path/to/blog/app/views"
That's quite a lot of text! Let's quickly go through and understand what each
part of it does.
@@ -498,8 +496,8 @@ harmoniously! It's time to create the form for a new article.
### The first form
-To create a form within this template, you will use a <em>form
-builder</em>. The primary form builder for Rails is provided by a helper
+To create a form within this template, you will use a *form
+builder*. The primary form builder for Rails is provided by a helper
method called `form_for`. To use this method, add this code into
`app/views/articles/new.html.erb`: