Foo bar hello
Foo ~~bar ~~ hello
Foo ~~bar ~~hello
Foo ~~bar hello~~~ world
Foo ~~~bar hello~~ world
| <pre><span class="cm-variable">Lorem</span> <span class="cm-variable">ipsum</span> <span class="cm-variable">dolor</span> <span class="cm-variable">sit</span> <span class="cm-variable">amet</span>, <span class="cm-variable">consectetur</span> <span class="cm-variable">adipiscing</span> <span class="cm-variable">elit</span>. <span class="cm-property">Quisque</span> <span class="cm-variable">iaculis</span> <span class="cm-variable">purus</span> <span class="cm-variable">vitae</span> <span class="cm-variable">nulla</span> <span class="cm-variable">luctus</span> <span class="cm-variable">eleifend</span>. <span class="cm-property">Aenean</span> <span class="cm-variable">a</span> <span class="cm-variable">velit</span> <span class="cm-variable">velit</span>, <span class="cm-variable">vitae</span> <span class="cm-variable">consectetur</span> <span class="cm-variable">ante</span>. <span class="cm-property">Vestibulum</span> <span class="cm-variable">viverra</span> <span class="cm-variable">sollicitudin</span> <span cl |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>CodeMirror: Autocomplete Demo</title> | |
| <link rel="stylesheet" href="http://codemirror.net/lib/codemirror.css"> | |
| <script src="http://codemirror.net/lib/codemirror.js"></script> | |
| <script src="http://codemirror.net/mode/javascript/javascript.js"></script> | |
| <style type="text/css">.CodeMirror {width:200px;}</style> | |
| </head> | |
| <body> |
| # Rename branch locally | |
| git branch -m oldName newName | |
| # Push renamed branch to origin | |
| git push origin newName | |
| # Remove original branch from origin | |
| git push origin :oldName |
| IF( SUBSTRING_INDEX(`ip`,'.',1)*16777216 | |
| + SUBSTRING(SUBSTRING_INDEX(`ip`,'.',2),1+LOCATE('.',`ip`))*65536 | |
| + SUBSTRING(SUBSTRING_INDEX(`ip`,'.',-2),1,-1+LOCATE('.',SUBSTRING_INDEX(`ip`,'.',-2)))*256 | |
| + SUBSTRING_INDEX(`ip`,'.',-1) | |
| > 2147483647, | |
| SUBSTRING_INDEX(`ip`,'.',1)*16777216 | |
| + SUBSTRING(SUBSTRING_INDEX(`ip`,'.',2),1+LOCATE('.',`ip`))*65536 | |
| + SUBSTRING(SUBSTRING_INDEX(`ip`,'.',-2),1,-1+LOCATE('.',SUBSTRING_INDEX(`ip`,'.',-2)))*256 | |
| + SUBSTRING_INDEX(`ip`,'.',-1) | |
| - 4294967296, |
| /* | |
| * Sets blockquotes on stackoverflow.com to have a yellowish background | |
| * with a box shadow, instead of the same background as code blocks. | |
| * Helps to show code inside of blockquotes. | |
| * | |
| * Sets links to be underlined by default so multi-word links and | |
| * single-word links can be distinguished. | |
| * | |
| * Should be added to ./chrome/userContent.css in your Firefox profile | |
| * directory. Profile directory can be found by clicking "Help", then |
| /** | |
| * Implements http://meta.stackoverflow.com/a/270612/526741 | |
| * | |
| * 1. Go to Help > Troubleshooting Information in Firefox | |
| * 2. Click "Open Directory" next to "Profile Directory" | |
| * 3. Open (or create) "chrome" directory | |
| * 4. Edit (or create) "userContent.css" in the "chrome" directory | |
| * 5. Set contents of file to this file | |
| */ | |
| @-moz-document domain(stackoverflow.com) { |
Foo bar hello
Foo ~~bar ~~ hello
Foo ~~bar ~~hello
Foo ~~bar hello~~~ world
Foo ~~~bar hello~~ world
| /*! | |
| * jquery.pjax.js | |
| * copyright chris wanstrath | |
| * https://github.com/defunkt/jquery-pjax | |
| * | |
| * Support for uploading files added by Brandon Frohs <bfrohs@gmail.com> | |
| */ | |
| (function($){ |
| /*jslint nomen: true */ | |
| /*global $, ga, findAll, FB, HTMLFormElement */ | |
| /*jslint nomen: false */ | |
| (function () { | |
| "use strict"; | |
| if (!$.support.pjax) { | |
| // If PJAX isn't supported, there is no need to run this code | |
| return; | |
| } |
| <?php | |
| namespace CommonMark; | |
| use CommonMark\Inline\Processor\YouTubeVideoProcessor; | |
| use CommonMark\Inline\Renderer\YouTubeVideoRenderer; | |
| use League\CommonMark\Converter; | |
| use League\CommonMark\Environment; | |
| use League\CommonMark\DocParser; |