diff options
author | Kara Kincaid <kara_kincaid@epam.com> | 2015-10-13 10:06:11 -0400 |
---|---|---|
committer | Kara Kincaid <kara_kincaid@epam.com> | 2015-10-13 10:06:11 -0400 |
commit | 45a5a9ed5b45f483a04c3b985be74cbcd38179fe (patch) | |
tree | 9d7599079877adda1b28cac75b8bc8f8bf057091 /haml.html.markdown | |
parent | 622d4485ab9efd265be83d16abbe8cb12da7934c (diff) | |
parent | 59a07411effbd0ed6289e062621deb29fe8641a8 (diff) |
fix merge conflict in css.html.markdown
Diffstat (limited to 'haml.html.markdown')
-rw-r--r-- | haml.html.markdown | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/haml.html.markdown b/haml.html.markdown index 847714e6..0948e9ef 100644 --- a/haml.html.markdown +++ b/haml.html.markdown @@ -122,11 +122,36 @@ $ haml input_file.haml output_file.html if book do %p This is a book + +/ Adding ordered / unordered list +%ul + %li + =item1 + =item2 / Again, no need to add the closing tags to the block, even for the Ruby. Indentation will take care of that for you. +/ ------------------------------------------- +/ Inserting Table with bootstrap classes +/ ------------------------------------------- + +%table.table.table-hover + %thead + %tr + %th Header 1 + %th Header 2 + + %tr + %td Value1 + %td value2 + + %tfoot + %tr + %td + Foot value + / ------------------------------------------- / Inline Ruby / Ruby interpolation |