소스 검색

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.
VonC 11 년 전
부모
커밋
198821f52b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      README.md

+ 2 - 2
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>
 ```