diff options
author | smihica <smihica@gmail.com> | 2013-01-02 19:19:30 +0900 |
---|---|---|
committer | smihica <smihica@gmail.com> | 2013-01-02 19:20:43 +0900 |
commit | aa4595702ee8242023f1740ad11a3998ac9dfc0f (patch) | |
tree | c767b616c04b450628223ff6215f4f20a4b21907 | |
parent | 05b9826295d902ed00d0971437e5d5de76fb7d9b (diff) | |
download | emmet-mode-aa4595702ee8242023f1740ad11a3998ac9dfc0f.tar.lz emmet-mode-aa4595702ee8242023f1740ad11a3998ac9dfc0f.tar.xz emmet-mode-aa4595702ee8242023f1740ad11a3998ac9dfc0f.zip |
Fixed README.
-rw-r--r-- | README.md | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -228,7 +228,7 @@ you'll transform your snippet into the appropriate tag structure. <a></a> <b></b> -## Text inner tag. +## Text a{Click me} <a>Click me</a> a>{Click me}*2 <a> @@ -245,7 +245,7 @@ you'll transform your snippet into the appropriate tag structure. <p> Click <a>here</a> - to continue + to continue </p> p{Click }+a{here}+{ to continue} <p> @@ -276,7 +276,8 @@ you'll transform your snippet into the appropriate tag structure. div|haml %div div.footer|haml .footer .footer|haml .footer - p>a href=#+br|haml %p + p>{txt}+a href=#+br|haml %p + txt %a{:href => "#"} %br @@ -289,9 +290,9 @@ you'll transform your snippet into the appropriate tag structure. p>a href=#+br|hic [:p [:a {:href "#"}] [:br]] - #q>(a*2>b)+p>b|hic [:div#q - [:a [:b]] - [:a [:b]] + #q>(a*2>b{x})+p>b|hic [:div#q + [:a [:b "x"]] + [:a [:b "x"]] [:p [:b]]] |