aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorVonC2013-10-28 14:48:52 +0100
committerVonC2013-11-04 16:31:44 +0100
commit198821f52bc7f7ee802e03ce8628f12b6828654d (patch)
tree3ff2d54cec371fa2a3be55f53f8e1c6f08e5dacd /README.md
parentd098385103f40dad555e21b1d00b8b9e1fd964d7 (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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2b590c1..6963acb 100644
--- 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>
```