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.
This commit is contained in:
VonC 2013-10-28 14:48:52 +01:00
parent d098385103
commit 198821f52b
1 changed files with 2 additions and 2 deletions

View File

@ -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>
```