Skip to content

Commit

Permalink
minor adjustments and fixes for the readme examples
Browse files Browse the repository at this point in the history
  • Loading branch information
rkh committed Sep 7, 2010
1 parent 8fbd9c2 commit c37db5c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.rdoc
Expand Up @@ -5,6 +5,7 @@ effort:

# myapp.rb
require 'sinatra'

get '/' do
'Hello world!'
end
Expand Down Expand Up @@ -184,10 +185,10 @@ can be set globally through Sinatra's configurations,
see {Options and Configurations}[http://www.sinatrarb.com/configuration.html],
and overridden on an individual basis.

set :haml, {:format => :html5 } # default Haml format is :xhtml
set :haml, :format => :html5 # default Haml format is :xhtml

get '/' do
haml :index, :haml_options => {:format => :html4 } # overridden
haml :index, :format => :html4 # overridden
end


Expand Down Expand Up @@ -248,7 +249,7 @@ can be set globally through Sinatra's configurations,
see {Options and Configurations}[http://www.sinatrarb.com/configuration.html],
and overridden on an individual basis.

set :sass, {:style => :compact } # default Sass style is :nested
set :sass, :style => :compact # default Sass style is :nested

get '/stylesheet.css' do
content_type 'text/css', :charset => 'utf-8'
Expand All @@ -274,7 +275,7 @@ can be set globally through Sinatra's configurations,
see {Options and Configurations}[http://www.sinatrarb.com/configuration.html],
and overridden on an individual basis.

set :scss, {:style => :compact } # default Scss style is :nested
set :scss, :style => :compact # default Scss style is :nested

get '/stylesheet.css' do
content_type 'text/css', :charset => 'utf-8'
Expand Down

0 comments on commit c37db5c

Please sign in to comment.