From 8bea61eb14839837df34d88be0a1bfe3aca28f61 Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Sun, 14 Dec 2008 15:09:01 -0800 Subject: [PATCH] fix formatting --- README.textile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.textile b/README.textile index bb3508d8..5876375b 100644 --- a/README.textile +++ b/README.textile @@ -172,10 +172,12 @@ Any files that contain a YAML front matter block will be processed by Jekyll as special files. The front matter must be the first thing in the file and takes the form of: +
   ---
   layout: post
   title: Blogging Like a Hacker
   ---
+
Between the triple-dashed lines, you can set predefined variables (see below for a reference) or custom data of your own. @@ -200,7 +202,7 @@ data that is sent to the Liquid templating engine during the conversion. For instance, if you set a title, you can use that in your layout to set the page title: - {{ page.title }} + <title>{{ page.title }}</title> h2. Filters, Tags, and Blocks