This is a test with italics multiple words.
This file contains hidden or 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
| #!/usr/bin/env node | |
| // $ david-dm | |
| // $ david-dm [<path>] | |
| 'use strict'; | |
| var exec = require('child_process').exec; | |
| var fs = require('fs'); | |
| var path = require('path'); |
This file contains hidden or 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
| function expandPath(p) { | |
| return p.replace(/(?:\$(\w+?)|%(.*?)%)/g, function (match, name) { | |
| return process.env[name]; | |
| }); | |
| } | |
| console.log(expandPath('$HOME/foo/bar')); // C:/Users/John/foo/bar | |
| console.log(expandPath('%USERPROFILE%\\foo\\bar')); // C:\\Users\\John\\foo\\bar |
This file contains hidden or 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
| .foo, .bar, .baz { display: auto; } | |
| .qux .foo:before, .qux .bar:before, .qux .baz:before { content: "test"; } |
This file contains hidden or 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
| #!/usr/bin/env node | |
| var fs = require('fs'); | |
| var mime = require('mime'); | |
| var file = process.argv.slice(2)[0]; | |
| fs.readFile(file, function (error, data) { | |
| if (error) { | |
| throw error; |
This file contains hidden or 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
| diff --git tasks/sass.js tasks/sass.js | |
| index 96ac499..85db65c 100644 | |
| --- tasks/sass.js | |
| +++ tasks/sass.js | |
| @@ -29,6 +29,7 @@ module.exports = function (grunt) { | |
| var passedArgs; | |
| var bundleExec; | |
| var banner; | |
| + var sourcemap; | |
This file contains hidden or 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
| <pre><samp>$ <kbd>git --version</kbd> | |
| <samp> | |
| Usage: npm <command> | |
| ... | |
| [email protected] c:\nodejs\node_modules\npm</samp></pre> |
This file contains hidden or 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
| <!-- start --> | |
| <section> | |
| <header> | |
| <h1 class="jser-sitelink">strict mode - motivation and semantics - Constellation Scorpius</h1> | |
| <p><a title="strict mode - motivation and semantics - Constellation Scorpius" href="http://utatane-constellation.tumblr.com/post/3711268645" target="_blank">http://utatane-constellation.tumblr.com/post/3711268645</a></p> | |
| </header> | |
| <p>strict modeの概念とは何か<br/> static解析につながる話</p> | |
| </section> | |
| <!-- end --> |
This file contains hidden or 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
| #!/usr/bin/env node | |
| 'use strict'; | |
| var fs = require('fs'); | |
| var htmlhint = require('htmlhint').HTMLHint; | |
| var path = require('path'); | |
| var ruleset = { | |
| 'tagname-lowercase': true, |
This file contains hidden or 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
| { | |
| "name": "picks.hail2u.net", | |
| "private": true, | |
| "scripts": { | |
| "build": "node index.js", | |
| "postbuild": "git commit --all --message=\"Rebuild\"", | |
| "preupdate": "git checkout gh-pages", | |
| "update": "git checkout master -- \"*\" && git reset && git add index.html */index.html && git clean -f", | |
| "postupdate": "git commit --all --message=\"Rebuild\"", | |
| "deploy": "npm run build && npm run update && git push origin gh-pages", |