Remove trailing whitespaces in en/13.5.md

This is to prevent the following `gitbook build` error
with GitBook 2.0.1:

    Template render error: unexpected token: .
        (In file '13.5.md', Line 281, Column 10)
This commit is contained in:
Anthony Fok
2015-04-10 08:17:21 -06:00
parent 3289f09022
commit e32e691f8b

View File

@@ -22,7 +22,7 @@ Our blog's directory structure can be seen below:
/delete.go /delete.go
/edit.go /edit.go
``` ```
## Blog routing ## Blog routing
@@ -73,7 +73,6 @@ func (this *IndexController) Get() {
``` ```
ViewController: ViewController:
``` ```
@@ -112,9 +111,9 @@ func (this *NewController) Post() {
blog.Created = time.Now() blog.Created = time.Now()
models.SaveBlog(blog) models.SaveBlog(blog)
this.Ctx.Redirect(302, "/") this.Ctx.Redirect(302, "/")
} }
``` ```
EditController EditController
@@ -142,7 +141,7 @@ func (this *EditController) Post() {
this.Ctx.Redirect(302, "/") this.Ctx.Redirect(302, "/")
} }
``` ```
DeleteController DeleteController
``` ```
@@ -155,7 +154,7 @@ func (this *DeleteController) Get() {
this.Data["Post"] = models.DelBlog(id) this.Data["Post"] = models.DelBlog(id)
this.Ctx.Redirect(302, "/") this.Ctx.Redirect(302, "/")
} }
``` ```
## Model layer ## Model layer
@@ -237,7 +236,7 @@ layout.tpl
</body> </body>
</html> </html>
``` ```
index.tpl index.tpl
``` ```
@@ -262,7 +261,7 @@ view.tpl
{{.Post.Created}}<br/> {{.Post.Created}}<br/>
{{.Post.Content}} {{.Post.Content}}
``` ```
new.tpl new.tpl
@@ -276,7 +275,7 @@ Content<textarea name="content" colspan="3" rowspan="10"></textarea>
``` ```
edit.tpl edit.tpl
``` ```
<h1>Edit {{.Post.Title}}</h1> <h1>Edit {{.Post.Title}}</h1>