diff options
author | VonC | 2013-10-28 14:48:52 +0100 |
---|---|---|
committer | VonC | 2013-11-04 16:31:44 +0100 |
commit | 198821f52bc7f7ee802e03ce8628f12b6828654d (patch) | |
tree | 3ff2d54cec371fa2a3be55f53f8e1c6f08e5dacd /README.md | |
parent | d098385103f40dad555e21b1d00b8b9e1fd964d7 (diff) |
Restore default notation for attributes in element.
It should be `{. xxxx=yyy }`, not `{_ xxxx=yyy }`.
Only test/test-element-attributes-markdown.html were using `{_`,
simply in order to test the ability, for the user, to define a _different_ pattern.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -65,8 +65,8 @@ Special syntax is available for adding attributes to Markdown elements. This is ```html <section data-markdown> <script type="text/template"> - - Item 1 {_class="fragment" data-fragment-index="2"} - - Item 2 {_class="fragment" data-fragment-index="1"} + - Item 1 {.class="fragment" data-fragment-index="2"} + - Item 2 {.class="fragment" data-fragment-index="1"} </script> </section> ``` |