mirror of
https://github.com/quitesimpleorg/qsmaddy.git
synced 2025-08-13 16:49:53 +02:00
orderedlistparser: Add parsing support for fully numeric markdown lists
This commit is contained in:
@@ -94,6 +94,26 @@ results in
|
||||
|
||||
```
|
||||
|
||||
1. ordered
|
||||
2. list
|
||||
3. items
|
||||
|
||||
```
|
||||
|
||||
results in
|
||||
|
||||
```html
|
||||
|
||||
<ol>
|
||||
<li>ordered</li>
|
||||
<li>list</li>
|
||||
<li>items</li>
|
||||
</ol>
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
|
||||
1. ordered
|
||||
* list
|
||||
* items
|
||||
|
Reference in New Issue
Block a user