Skip to content

Instantly share code, notes, and snippets.

View nilliams's full-sized avatar

Nick Williams nilliams

  • Leicestershire, UK
View GitHub Profile
@nilliams
nilliams / index.js
Created October 21, 2016 20:04
requirebin sketch
var Promise = require('rsvp').Promise;
function foo() {
return new Promise(function(resolve, reject) {
console.log("We're running...");
// We totally resolve and all is good ...
resolve();
});
}
@nilliams
nilliams / index.js
Last active May 7, 2017 11:14
requirebin sketch
const html = require('choo/html')
const choo = require('choo')
function Body(state, emit) {
let input;
return html`
<body>
<ul>
${state.todos.map(todo => (
@nilliams
nilliams / package.json
Last active June 25, 2017 17:10
Minimal Quick-Start package.json for Browserify & Sass
{
"name": "project-quick-start",
"version": "1.0.0",
"description": "npm install; npm run base; npm start",
"main": "",
"scripts": {
"start": "npm-run-all --parallel js:watch css:watch",
"base": "npm-run-all base:dirs base:js base:css base:html",
"base:dirs": "mkdirp src",
@nilliams
nilliams / jekyll-prettify.md
Last active January 24, 2020 18:52
Add client-side syntax highlighting to static sites (such as Jekyll w/ Pygments disabled), with Google-Code-Prettify.

Note: One alternative is to use this Prism.js Jekyll Plugin, the advantage of using google-code-prettify is that it can be used with standard markdown (indented code blocks) rather than using liquid tags like {% prism %}. Prettify will guess which language your code blocks contain and highlight appropriately.

Grab the google-code-prettify sources and include them in the <head> of your page template, for Jekyll you will want to edit layouts/default.html (tailor paths to directory structure):

<link rel="stylesheet" href="/css/google-code-prettify/prettify.css">
<script src="/js/google-code-prettify/prettify.js"></script>

This JS snippet adds the prettyprint class to <pre> tags and runs prettify: