Skip to content

Commit

Permalink
README formatting adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
rkh committed Jan 11, 2011
1 parent 247a4fd commit 5c4af8e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions README.rdoc
Expand Up @@ -170,7 +170,7 @@ directly.

=== Haml Templates

The haml gem/library is required to render HAML templates:
The <tt>haml</tt> gem/library is required to render HAML templates:

## You'll need to require haml in your app
require 'haml'
Expand Down Expand Up @@ -206,7 +206,7 @@ Renders <tt>./views/index.erb</tt>.

=== Erubis Templates

The erubis gem/library is required to render Erubis templates:
The <tt>erubis</tt> gem/library is required to render Erubis templates:

## You'll need to require erubis in your app
require 'erubis'
Expand All @@ -230,7 +230,7 @@ Renders <tt>./views/index.erb</tt> with Erubis.

=== Builder Templates

The builder gem/library is required to render builder templates:
The <tt>builder</tt> gem/library is required to render builder templates:

## You'll need to require builder in your app
require 'builder'
Expand All @@ -243,7 +243,7 @@ Renders <tt>./views/index.builder</tt>.

=== Nokogiri Templates

The nokogiri gem/library is required to render nokogiri templates:
The <tt>nokogiri</tt> gem/library is required to render nokogiri templates:

## You'll need to require nokogiri in your app
require 'nokogiri'
Expand All @@ -256,7 +256,7 @@ Renders <tt>./views/index.nokogiri</tt>.

=== Sass Templates

The haml gem/library is required to render Sass templates:
The <tt>haml</tt> or <tt>sass</tt> gem/library is required to render Sass templates:

## You'll need to require haml or sass in your app
require 'sass'
Expand All @@ -280,7 +280,7 @@ and overridden on an individual basis.

=== Scss Templates

The haml gem/library is required to render Scss templates:
The <tt>haml</tt> or <tt>sass</tt> gem/library is required to render Scss templates:

## You'll need to require haml or sass in your app
require 'sass'
Expand All @@ -304,7 +304,7 @@ and overridden on an individual basis.

=== Less Templates

The less gem/library is required to render Less templates:
The <tt>less</tt> gem/library is required to render Less templates:

## You'll need to require less in your app
require 'less'
Expand All @@ -317,7 +317,7 @@ Renders <tt>./views/stylesheet.less</tt>.

=== Liquid Templates

The liquid gem/library is required to render Liquid templates:
The <tt>liquid</tt> gem/library is required to render Liquid templates:

## You'll need to require liquid in your app
require 'liquid'
Expand All @@ -335,7 +335,7 @@ template, you almost always want to pass locals to it:

=== Markdown Templates

The rdiscount gem/library is required to render Markdown templates:
The <tt>rdiscount</tt> gem/library is required to render Markdown templates:

## You'll need to require rdiscount in your app
require "rdiscount"
Expand Down Expand Up @@ -374,7 +374,7 @@ Renders <tt>./views/index.md</tt> with BlueCloth.

=== Textile Templates

The RedCloth gem/library is required to render Textile templates:
The <tt>RedCloth</tt> gem/library is required to render Textile templates:

## You'll need to require redcloth in your app
require "redcloth"
Expand All @@ -390,14 +390,14 @@ therefore will usually use it in combination with another rendering engine:

erb :overview, :locals => { :text => textile(:introduction) }

Note that you may also call the textile method from within other templates:
Note that you may also call the +textile+ method from within other templates:

%h1 Hello From Haml!
%p= textile(:greetings)

=== RDoc Templates

The RDoc gem/library is required to render RDoc templates:
The <tt>rdoc</tt> gem/library is required to render RDoc templates:

## You'll need to require rdoc in your app
require "rdoc"
Expand All @@ -413,14 +413,14 @@ therefore will usually use it in combination with another rendering engine:

erb :overview, :locals => { :text => rdoc(:introduction) }

Note that you may also call the rdoc method from within other templates:
Note that you may also call the +rdoc+ method from within other templates:

%h1 Hello From Haml!
%p= rdoc(:greetings)

=== Radius Templates

The radius gem/library is required to render Radius templates:
The <tt>radius</tt> gem/library is required to render Radius templates:

## You'll need to require radius in your app
require 'radius'
Expand All @@ -438,7 +438,7 @@ template, you almost always want to pass locals to it:

=== Markaby Templates

The markaby gem/library is required to render Markaby templates:
The <tt>markaby</tt> gem/library is required to render Markaby templates:

## You'll need to require markaby in your app
require 'markaby'
Expand Down

0 comments on commit 5c4af8e

Please sign in to comment.