Skip to content

Commit b36d83a

Browse files
committedJan 8, 2014
Clarify some details in README
1 parent 5102fae commit b36d83a

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed
 

‎README.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
# opal-haml
1+
# opal-haml: Haml templates for opal
22

3-
Haml templates for opal
3+
This gem adds `.haml` files to sprockets to precompile templates for opal. This
4+
gem does not make the haml compiler available under opal, just the result of
5+
pre-compiling a haml template.
6+
7+
A small runtime is included to handle dynamic attributes, as well as allowing
8+
content to be rendered.
9+
10+
All haml templates become available under the `Template` constant in Opal,
11+
which allows a template to be easily rendered in a context:
12+
13+
```ruby
14+
Template['user'].render(my_user)
15+
# => <div>..</div>
16+
```
417

518
## Usage
619

0 commit comments

Comments
 (0)
Please sign in to comment.