-
-
Save AlexandrDragunkin/e9e6d5cb04292d7178b7ce2d7a7dc34f to your computer and use it in GitHub Desktop.
Syntax highlighting for Markdown Pad.
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
<link href="https://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.css" type="text/css" rel="stylesheet" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> | |
</script> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.js"> | |
</script> | |
<script> | |
$(document).ready(function() | |
{ | |
$("pre").addClass("prettyprint"); | |
prettyPrint(); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment