A very basic regex-based Markdown parser. Supports the
following elements (and can be extended via Slimdown::add_rule()):
- Headers
- Links
- Bold
| <?php | |
| /** | |
| * UUID class | |
| * | |
| * The following class generates VALID RFC 4122 COMPLIANT | |
| * Universally Unique IDentifiers (UUID) version 3, 4 and 5. | |
| * | |
| * UUIDs generated validates using OSSP UUID Tool, and output | |
| * for named-based UUIDs are exactly the same. This is a pure | |
| * PHP implementation. |
| private string GetDocumentContents(System.Web.HttpRequestBase Request) | |
| { | |
| string documentContents; | |
| using (Stream receiveStream = Request.InputStream) | |
| { | |
| using (StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8)) | |
| { | |
| documentContents = readStream.ReadToEnd(); | |
| } | |
| } |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <title>Analog Clock</title> | |
| <script> | |
| function updateTime() { // Update the SVG clock | |
| var now = new Date(); | |
| var sec = now.getSeconds(); | |
| var min = now.getMinutes(); | |
| var hour = (now.getHours() % 12) + min/60; |
| #!/bin/bash | |
| # This way you can customize which branches should be skipped when | |
| # prepending commit message. | |
| if [ -z "$BRANCHES_TO_SKIP" ]; then | |
| BRANCHES_TO_SKIP=(master develop test) | |
| fi | |
| BRANCH_NAME=$(git symbolic-ref --short HEAD) | |
| BRANCH_NAME="${BRANCH_NAME##*/}" |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Attila Incze <http://atimb.me> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| if $(ConfigurationName) == Release "$(SolutionDir)packages\NuGet.CommandLine.1.5.21005.9019\tools\NuGet.exe" pack "$(ProjectPath)" -Properties Configuration=Release -Verbose |
| a[data-icon]:before, | |
| span[data-icon]:before { | |
| font-family: 'Icon Font Here'; | |
| content: attr(data-icon); | |
| } | |
| /* | |
| This would also work, but other web developers might | |
| yell at you about "performance" which may/not matter: |
A very basic regex-based Markdown parser. Supports the
following elements (and can be extended via Slimdown::add_rule()):
| /* | |
| * base58.js | |
| * - encodes integers to and decodes from a base58 (or your own) base58 alphabet | |
| * - based on Flickr's url shortening | |
| * | |
| * usage: | |
| * base58.encode(integer); | |
| * base58.decode(string); | |
| * | |
| * (c) 2012 inflammable/raromachine |
| // See https://developer.mozilla.org/en/DOM/XMLHttpRequest/Sending_and_Receiving_Binary_Data | |
| var readBinaryFile = function (url) { | |
| var content, newContent = ""; | |
| $.ajax({ | |
| dataType: 'text', | |
| mimeType: 'text/plain; charset=x-user-defined', | |
| url: url, | |
| async: false, | |
| cache: false, |