summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-24 20:35:47 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-24 20:35:47 -0800
commit86c4b10ddd510240c383ef8874ded2ba1b407e88 (patch)
tree114b99a5aa3361aff78d236ab73054aba9e6d783
parent4a822d089d45ae495a1e0763dcdc018e8035d3cf (diff)
Bump spec version to 0.17, updated changelog for spec.
-rw-r--r--changelog.spec.txt15
-rw-r--r--spec.txt4
2 files changed, 17 insertions, 2 deletions
diff --git a/changelog.spec.txt b/changelog.spec.txt
index 1926fa7..445edbb 100644
--- a/changelog.spec.txt
+++ b/changelog.spec.txt
@@ -1,3 +1,18 @@
+[0.17]
+
+ * Improved rule limiting intraword `_` for emphasis and strong emphasis.
+ To prevent intra-word emphasis, we used to check to see if
+ the delimiter was followed/preceded by an ASCII alphanumeric.
+ We now do something more elegant: whereas an opening `*` must
+ be left-flanking, an opening `_` must be left-flanking *and
+ not right-flanking*. And so on for the other cases.
+ All the original tests passed except some tests with Russian
+ text with internal `_`, which formerly created emphasis but no
+ longer do with the new rule. These tests have been adjusted.
+ A few new test cases have been added to illustrate the rule.
+ * Added example with link break inside pointy braces (no link) (#295).
+ * Added spec example: loose list with blank line after fenced code (#285).
+
[0.16]
* Rewrote beginning of Entities section, clarifying that only
diff --git a/spec.txt b/spec.txt
index f4dd722..e754810 100644
--- a/spec.txt
+++ b/spec.txt
@@ -1,8 +1,8 @@
---
title: CommonMark Spec
author: John MacFarlane
-version: 0.16
-date: 2015-01-14
+version: 0.17
+date: 2015-01-24
license: '[CC-BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)'
...