Markdeep
Dan Tobias (Talk | contribs) (Created page with "{{FormatInfo |formattype=electronic |subcat=Markup |extensions={{ext|md.html}} |released=2015 }} '''Markdeep''' is an extended variant of Markdown intended to be viewed in...") |
Dan Tobias (Talk | contribs) |
||
(4 intermediate revisions by one user not shown) | |||
Line 5: | Line 5: | ||
|released=2015 | |released=2015 | ||
}} | }} | ||
− | '''Markdeep''' is an extended variant of [[Markdown]] intended to be viewed in a web browser, as it is implemented via [[JavaScript]] which takes a text document (with Markdown syntax and some additional features) and converts it to HTML for display. You simply add a line at the bottom that references the Markdeep script (both the remote copy at its creator's site, and a local copy if present for offline use) and also provides a default CSS presentation for the plain-text version as a fallback. | + | '''Markdeep''' is an extended variant of [[Markdown]] intended to be viewed in a [[web]] browser, as it is implemented via [[JavaScript]] which takes a text document (with Markdown syntax and some additional features) and converts it to [[HTML]] for display. You simply add a line at the bottom that references the Markdeep script (both the remote copy at its creator's site, and a local copy if present for offline use) and also provides a default [[Cascading Style Sheets|CSS]] presentation for the plain-text version as a fallback. |
− | Enhanced features include converting [[ASCII | + | Enhanced features include converting [[ASCII Art]] diagrams into real graphics. |
The piece of code you're supposed to add to the end of the document is: | The piece of code you're supposed to add to the end of the document is: | ||
Line 17: | Line 17: | ||
* [http://casual-effects.com/markdeep/features.md.html Feature demo] | * [http://casual-effects.com/markdeep/features.md.html Feature demo] | ||
* [http://casual-effects.com/markdeep/latest/markdeep.min.js Markdeep script] | * [http://casual-effects.com/markdeep/latest/markdeep.min.js Markdeep script] | ||
+ | |||
+ | [[Category:Web]] |
Latest revision as of 13:12, 16 October 2015
Markdeep is an extended variant of Markdown intended to be viewed in a web browser, as it is implemented via JavaScript which takes a text document (with Markdown syntax and some additional features) and converts it to HTML for display. You simply add a line at the bottom that references the Markdeep script (both the remote copy at its creator's site, and a local copy if present for offline use) and also provides a default CSS presentation for the plain-text version as a fallback.
Enhanced features include converting ASCII Art diagrams into real graphics.
The piece of code you're supposed to add to the end of the document is:
<style class="fallback">body{white-space:pre;font-family:monospace}</style><script src="markdeep.min.js"></script><script src="http://casual-effects.com/markdeep/latest/markdeep.min.js"></script>