diff options
author | Waylan Limberg <waylan@gmail.com> | 2011-06-07 09:45:16 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2011-06-07 09:45:16 -0400 |
commit | bca0d6bf8b26707431c936ed51419358b9e57749 (patch) | |
tree | 3bd09762db01666b65b03ac581d5be4d850c6495 /tests/misc | |
parent | ee6a843c1029b52f4a0ce00ebdd8d45523535ee0 (diff) | |
download | markdown-bca0d6bf8b26707431c936ed51419358b9e57749.tar.gz markdown-bca0d6bf8b26707431c936ed51419358b9e57749.tar.bz2 markdown-bca0d6bf8b26707431c936ed51419358b9e57749.zip |
Fixed #19. Improved Start Emphasis regex.
Diffstat (limited to 'tests/misc')
-rw-r--r-- | tests/misc/em_strong.html | 3 | ||||
-rw-r--r-- | tests/misc/em_strong.txt | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/misc/em_strong.html b/tests/misc/em_strong.html index 75c92d8..776381b 100644 --- a/tests/misc/em_strong.html +++ b/tests/misc/em_strong.html @@ -7,4 +7,5 @@ <p>three asterisks: ***</p> <p>with spaces: * * *</p> <p>three underscores: ___</p> -<p>with spaces: _ _ _</p>
\ No newline at end of file +<p>with spaces: _ _ _</p> +<p>One char: <em>a</em></p>
\ No newline at end of file diff --git a/tests/misc/em_strong.txt b/tests/misc/em_strong.txt index d0774ad..1285665 100644 --- a/tests/misc/em_strong.txt +++ b/tests/misc/em_strong.txt @@ -18,3 +18,4 @@ three underscores: ___ with spaces: _ _ _ +One char: _a_ |