We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5102fae commit b36d83aCopy full SHA for b36d83a
README.md
@@ -1,6 +1,19 @@
1
-# opal-haml
+# opal-haml: Haml templates for opal
2
3
-Haml templates for opal
+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
+```
17
18
## Usage
19
0 commit comments