This repository has been archived by the owner on Jan 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thanks to Adeel Khan for reporting. Fixes Instiki Issue #52.
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Fixes Uninitialized eq2eqid hash | ||
*** Parameters: *** | ||
require 'maruku/ext/math';{:html_math_engine => 'itex2mml'} | ||
*** Markdown input: *** | ||
This is an unresolved equation reference (eq:xyz). | ||
|
||
*** Output of inspect *** | ||
md_el(:document, md_par([ | ||
"This is an unresolved equation reference ", | ||
md_el(:eqref, [], {:eqid=>"xyz"}), | ||
"." | ||
])) | ||
*** Output of to_html *** | ||
<p>This is an unresolved equation reference (eq:xyz).</p> | ||
|
||
*** Output of to_latex *** | ||
This is an unresolved equation reference \eqref{xyz}. | ||
*** Output of to_md *** | ||
|
||
*** Output of to_s *** | ||
|