From e5aa127b81e3347c604baeef224e623b676edc16 Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Thu, 5 Jan 2012 17:05:56 +0100 Subject: [PATCH] Presented list as table --- multi/blog/Yesod-tutorial-for-newbies.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/multi/blog/Yesod-tutorial-for-newbies.md b/multi/blog/Yesod-tutorial-for-newbies.md index 10115d8c3..6bd4e794c 100644 --- a/multi/blog/Yesod-tutorial-for-newbies.md +++ b/multi/blog/Yesod-tutorial-for-newbies.md @@ -201,10 +201,10 @@ Inside the `yosog` the important files/directories for this tutorial are: Obviously: -- `config/routes` is where you'll configure the map URL → Code. -- `Handler/` contains the files that will contain the code called when a URL is accessed. -- `templates/` contains HTML, JS and CSS templates. -- `config/models` is where you'll configure the persistent objects (database tables). +| `config/routes` | is where you'll configure the map URL → Code. | +| `Handler/` | contains the files that will contain the code called when a URL is accessed. | +| `templates/` | contains HTML, JS and CSS templates. | +| `config/models` | is where you'll configure the persistent objects (database tables). | During this tutorial we'll modify other files as well, but we won't look them in detail.