Markdeep: Difference between revisions
Created page with "Markdeep [https://casual-effects.com/markdeep/ (website)] is a markup language similar to markdown.<br> Your source is processed into HTML using their javascript.<br> [https:/..." |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
==Getting Started== | ==Getting Started== | ||
See [https://casual-effects.com/markdeep/#getstarted getting started]. | See [https://casual-effects.com/markdeep/#getstarted getting started] and [https://casual-effects.com/markdeep/features.md.html feature demo]. | ||
==Customization== | |||
===Disabling the footer=== | |||
Add this before you load the script | |||
<pre> | |||
<style> | |||
.markdeepFooter * { | |||
display: none!important; | |||
} | |||
</style> | |||
</pre> |
Latest revision as of 18:24, 6 March 2020
Markdeep (website) is a markup language similar to markdown.
Your source is processed into HTML using their javascript.
Repo.
Getting Started
See getting started and feature demo.
Customization
Add this before you load the script
<style> .markdeepFooter * { display: none!important; } </style>