manual/Introduction/TemplateLanguages.md in hydeweb-0.0.5 vs manual/Introduction/TemplateLanguages.md in hydeweb-0.0.7

- old
+ new

@@ -24,18 +24,18 @@ - `.less` -- LessCSS - `.sass` -- SASS This means that the following files will be translated accordingly: - | products.html.haml | becomes `products.html` (rendered through HAML) | - | control.css.less | becomes `control.css` (rendered through Less CSS) | - | site.xml.erb | becomes `site.xml` (rendered through Embedded Ruby) | + | products.haml | becomes `products.html` (rendered through HAML) | + | control.less | becomes `control.css` (rendered through Less CSS) | + | site.xml.erb | becomes `site.xml` (rendered through Embedded Ruby) | Example ------- -When creating a new site, have a look at `index.html.haml`. +When creating a new site, have a look at `index.haml`. ... Headers ------- @@ -43,10 +43,10 @@ ... Layouts ------- -Layouts are supported for these languages. +Layouts are supported for HAML, Markdown, Textile and ERB languages. ... Embedded Ruby features ----------------------