Mercurial > public > mercurial-scm > hg
diff tests/test-minirst.py.out @ 31130:6582b3716ae0
minirst: detect bullet lists using asterisks
Previously, the "bullet" regular expression excluded the asterisk
('*') as a character denoting a bulleted list. Why I'm not sure
because the asterisk seems to be the canonical bullet character
in reST these days.
This patch makes asterisk-prefixed lines parse as bulleted lists.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Wed, 15 Feb 2017 16:42:17 -0800 |
parents | 58f8b29c37ff |
children | aaff3bc75306 |
line wrap: on
line diff
--- a/tests/test-minirst.py.out Wed Mar 01 20:22:04 2017 +0100 +++ b/tests/test-minirst.py.out Wed Feb 15 16:42:17 2017 -0800 @@ -187,6 +187,12 @@ This is the first line. The line continues here. This is the second line. + +Bullet lists are also detected: + +* This is the first bullet +* This is the second bullet It has 2 lines +* This is the third bullet ---------------------------------------------------------------------- 30 column format: @@ -231,6 +237,14 @@ This is the first line. The line continues here. This is the second line. + +Bullet lists are also +detected: + +* This is the first bullet +* This is the second bullet It + has 2 lines +* This is the third bullet ---------------------------------------------------------------------- html format: @@ -276,6 +290,14 @@ <li> This is the first line. The line continues here. <li> This is the second line. </ol> +<p> +Bullet lists are also detected: +</p> +<ul> + <li> This is the first bullet + <li> This is the second bullet It has 2 lines + <li> This is the third bullet +</ul> ---------------------------------------------------------------------- == options ==