-
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
2 changed files
with
63 additions
and
20 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,37 @@ | ||
https://github.com/bhollis/maruku/issues/74 | ||
*** Parameters: *** | ||
{} | ||
*** Markdown input: *** | ||
## Cool Title | ||
|
||
<ul> | ||
<li>Cool Text yada yada</li> | ||
<li>ICool Tex 2 yada yada</li> | ||
</ul> | ||
|
||
|
||
|
||
<p id="icons"> | ||
<a href="" class="stumbleupon" target="_blank"></a> | ||
<a href="" class="stumbleupon" target="_blank"></a> | ||
<a href="" class="stumbleupon" target="_blank"></a> | ||
</p> | ||
|
||
## Recents Post | ||
*** Output of inspect *** | ||
md_el(:document, [ | ||
md_el(:header, "Cool Title", {:level=>2}), | ||
md_html("<ul>\n <li>Cool Text yada yada</li>\n <li>ICool Tex 2 yada yada</li>\n</ul>"), | ||
md_html("<p id=\"icons\">\n <a href=\"\" class=\"stumbleupon\" target=\"_blank\"></a>\n <a href=\"\" class=\"stumbleupon\" target=\"_blank\"></a>\n <a href=\"\" class=\"stumbleupon\" target=\"_blank\"></a>\n</p>"), | ||
md_el(:header, "Recents Post", {:level=>2}) | ||
]) | ||
*** Output of to_html *** | ||
<h2 id="cool_title_1">Cool Title</h2> | ||
<ul><li>Cool Text yada yada</li> | ||
<li>ICool Tex 2 yada yada</li> | ||
</ul><p id="icons"> | ||
<a href="" class="stumbleupon" target="_blank"></a> | ||
<a href="" class="stumbleupon" target="_blank"></a> | ||
<a href="" class="stumbleupon" target="_blank"></a> | ||
</p> | ||
<h2 id="recents_post_2">Recents Post</h2> |
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