-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
PENDING - List markers typically start at the left margin, but may be indented by up to three spaces. https://github.com/bhollis/maruku/issues/30 | ||
*** Parameters: *** | ||
{} | ||
*** Markdown input: *** | ||
This is a list: | ||
|
||
* a list | ||
|
||
And this: | ||
|
||
* still a list | ||
*** Output of inspect *** | ||
md_el(:document, []) | ||
*** Output of to_html *** | ||
<p>This is a list:</p> | ||
|
||
<ul> | ||
<li>a list</li> | ||
</ul> | ||
|
||
<p>And this:</p> | ||
|
||
<ul> | ||
<li>still a list</li> | ||
</ul> |