This repository was archived by the owner on Feb 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 6
6
* Improve autolink parsing.
7
7
* Added new table syntax: ` TableSyntax ` .
8
8
* Added new ExtensionSet that includes the table syntax: ` ExtensionSet.gitHub ` .
9
- * For development: added tool/travis.sh.
9
+ * For development: added ` tool/travis.sh ` .
10
+ * Support multiline Setext headers.
11
+ * Handle loose-vs-strict list items better.
12
+ * Support ordered lists that start with a number other than 1.
10
13
11
14
## 0.11.0+1
12
15
Original file line number Diff line number Diff line change @@ -69,6 +69,16 @@ parameter. Right now there are two extension sets:
69
69
* ` new InlineHtmlSyntax() `
70
70
* ` const FencedCodeBlockSyntax() `
71
71
72
+ * ` ExtensionSet.gitHub ` includes five extensions:
73
+
74
+ * ` new InlineHtmlSyntax() `
75
+ * ` const FencedCodeBlockSyntax() `
76
+ * ` const HeaderWithIdSyntax() ` , which adds ` id ` attributes to ATX-style
77
+ headers, for easy intra-document linking.
78
+ * ` const SetextHeaderWithIdSyntax() ` , which adds ` id ` attributes to
79
+ Setext-style headers, for easy intra-document linking.
80
+ * ` const TableSyntax() `
81
+
72
82
### Custom syntax extensions
73
83
74
84
You can create and use your own syntaxes.
You can’t perform that action at this time.
0 commit comments