[PATCH 1 of 4] minirst: detect bullet lists using asterisks

Yuya Nishihara yuya at tcha.org
Thu Mar 2 13:40:21 UTC 2017


On Wed, 15 Feb 2017 17:58:58 -0800, Gregory Szorc wrote:
> # HG changeset patch
> # User Gregory Szorc <gregory.szorc at gmail.com>
> # Date 1487205737 28800
> #      Wed Feb 15 16:42:17 2017 -0800
> # Node ID dd90d5f7dc1908d9b69e6a4b8165a73757d1c84b
> # Parent  afaf3c2b129c8940387fd9928ae4fdc28259d13c
> minirst: detect bullet lists using asterisks

The first 3 patches look nice even if we wouldn't take the 4th RFC path.
Queued these, thanks.

> +* 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 @@ Line blocks are also a form of list:
>   <li> This is the first line.   The line continues here.
>   <li> This is the second line.
>  </ol>
> +<p>
> +Bullet lists are also detected:
> +</p>
> +<ol>
> + <li> This is the first bullet
> + <li> This is the second bullet   It has 2 lines
> + <li> This is the third bullet
> +</ol>

This should be <ul>. Fixed in flight.


More information about the Mercurial-devel mailing list