diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2015-10-12 23:07:14 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2015-10-12 23:07:14 -0500 |
commit | 438a57a72cd6ddb0290616dee05ecdc9a52f5a43 (patch) | |
tree | d5873565f2644acc149578c074edc9da6b1c73d2 | |
parent | 8f8c8193653567b70e41ca7f0df74fd508ec7f9c (diff) | |
parent | bb68e9483d8be6b7ba76f93e2fcfc07fabe03293 (diff) |
Merge pull request #1437 from chashmeetsingh/patch-7
Adding unordered/ordered list
-rw-r--r-- | haml.html.markdown | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/haml.html.markdown b/haml.html.markdown index 847714e6..dbc0a439 100644 --- a/haml.html.markdown +++ b/haml.html.markdown @@ -122,6 +122,12 @@ $ 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. |