forked from bhollis/maruku
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve Issue 70: remove vestiges of old metadata syntax
- Loading branch information
Showing
3 changed files
with
2 additions
and
23 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
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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
PENDING - Lines should be able to start with @. Note that a leading space doesn't | ||
Lines should be able to start with @. Note that a leading space doesn't | ||
trigger the old metadata syntax. https://github.com/bhollis/maruku/issues/70 | ||
*** Parameters: *** | ||
{} | ||
*** Markdown input: *** | ||
@ foo | ||
*** Output of inspect *** | ||
md_el(:document,[],{},[]) | ||
md_el(:document, md_par("@ foo")) | ||
*** Output of to_html *** | ||
<p>@ foo</p> | ||
|