path and :line options documented

This commit is contained in:
George 2013-10-21 17:05:43 +04:00 committed by Zachary Scott
parent 73c182cfb1
commit bde9fc5dc1
1 changed files with 8 additions and 0 deletions

View File

@ -535,6 +535,14 @@ end
```
Renders the template string.
You can optionally specify `:path` and `:line` for a clearer backtrace if there is
a filesystem path or line associated with that string:
```ruby
get '/' do
haml '%div.title Hello World', :path => 'examples/file.haml', :line => 3
end
```
### Available Template Languages