Restore default notation for attributes in element.
authorVonC <vonc@laposte.net>
Mon, 28 Oct 2013 13:48:52 +0000 (14:48 +0100)
committerVonC <vonc@laposte.net>
Mon, 4 Nov 2013 15:31:44 +0000 (16:31 +0100)
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.

README.md

index 2b590c1c97c002e4af693d071466d7bb2c11d17f..6963acb721741f0035369b75e7fae0f808a3b350 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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>
 ```