Last active
June 20, 2016 05:13
-
-
Save insin/2c14518337f79c5016ab7ca98b93149e to your computer and use it in GitHub Desktop.
React/Webpack setup to tweak Prism fairyfloss theme
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
import './prism-fairyfloss.css' | |
import 'prismjs' | |
import React from 'react' | |
import {render} from 'react-dom' | |
let App = React.createClass({ | |
componentDidMount() { | |
window.Prism.highlightAll() | |
}, | |
componentDidUpdate() { | |
window.Prism.highlightAll() | |
}, | |
render() { | |
return <div> | |
<pre> | |
<code className="language-javascript"> | |
{require('!!raw!./sample.js')} | |
</code> | |
</pre> | |
</div> | |
} | |
}) | |
render(<App/>, document.querySelector('#app')) |
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
{ | |
"scripts": { | |
"start": "react run app.js" | |
}, | |
"dependencies": { | |
"prismjs": "1.5.1", | |
"react": "15.1.0", | |
"react-dom": "15.1.0" | |
}, | |
"devDependencies": { | |
"nwb": "0.11.x", | |
"raw-loader": "0.5.1" | |
} | |
} |
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
code[class*="language-"], | |
pre[class*="language-"] { | |
color: #F8F8F2; | |
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; | |
text-align: left; | |
white-space: pre; | |
word-spacing: normal; | |
word-break: normal; | |
word-wrap: normal; | |
line-height: 1.5; | |
-moz-tab-size: 4; | |
-o-tab-size: 4; | |
tab-size: 4; | |
-webkit-hyphens: none; | |
-moz-hyphens: none; | |
-ms-hyphens: none; | |
hyphens: none; | |
} | |
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, | |
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection { | |
background: #8077A8; | |
} | |
pre[class*="language-"]::selection, pre[class*="language-"] ::selection, | |
code[class*="language-"]::selection, code[class*="language-"] ::selection { | |
background: #8077A8; | |
} | |
/* Code blocks */ | |
pre[class*="language-"] { | |
padding: 1em; | |
margin: .5em 0; | |
overflow: auto; | |
border-radius: 0.3em; | |
} | |
:not(pre) > code[class*="language-"], | |
pre[class*="language-"] { | |
background-color: #5A5475; | |
} | |
/* Inline code */ | |
:not(pre) > code[class*="language-"] { | |
padding: .1em; | |
border-radius: .3em; | |
} | |
.token.comment, | |
.token.prolog, | |
.token.doctype, | |
.token.cdata { | |
color: #E6C000; | |
} | |
.token.operator { | |
color: #FFB8D1; | |
} | |
.token.punctuation { | |
color: #F8F8F2; | |
} | |
.namespace { | |
opacity: .7; | |
} | |
.token.property, | |
.token.tag, | |
.token.boolean, | |
.token.number, | |
.token.constant, | |
.token.symbol, | |
.token.deleted { | |
color: #C5A3FF; | |
} | |
.token.selector, | |
.token.attr-name, | |
.token.string, | |
.token.char, | |
.token.builtin, | |
.token.url, | |
.token.inserted { | |
color: #FFEA00; | |
} | |
.token.entity { | |
color: #F8F8F2; | |
background: #716799; | |
} | |
.token.atrule, | |
.token.attr-value, | |
.token.keyword { | |
color: #FFB8D1; | |
} | |
.token.function { | |
color: #FFF352; | |
} | |
.token.regex, | |
.token.important, | |
.token.variable { | |
color: #C5A3FF; | |
} | |
.token.important, | |
.token.bold { | |
font-weight: bold; | |
} | |
.token.italic { | |
font-style: italic; | |
} | |
.token.entity { | |
cursor: help; | |
} |
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
// Cross-browser xml parsing | |
var parseXML = function( data ) { | |
var xml, tmp; | |
if ( !data || typeof data !== "string" ) { | |
return null; | |
} | |
try { | |
if ( window.DOMParser ) { // Standard | |
tmp = new DOMParser(); | |
xml = tmp.parseFromString( data , "text/xml" ); | |
} else { // IE | |
xml = new ActiveXObject( "Microsoft.XMLDOM" ); | |
xml.async = false; | |
xml.loadXML( data ); | |
} | |
} catch( e ) { | |
xml = undefined; | |
} | |
if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { | |
jQuery.error( "Invalid XML: " + data ); | |
} | |
return xml; | |
}; | |
// Bind a function to a context, optionally partially applying any arguments. | |
var proxy = function( fn, context ) { | |
var tmp, args, proxy; | |
if ( typeof context === "string" ) { | |
tmp = fn[ context ]; | |
context = fn; | |
fn = tmp; | |
} | |
// Quick check to determine if target is callable, in the spec | |
// this throws a TypeError, but we will just return undefined. | |
if ( !jQuery.isFunction( fn ) ) { | |
return undefined; | |
} | |
// Simulated bind | |
args = core_slice.call( arguments, 2 ); | |
proxy = function() { | |
return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); | |
}; | |
// Set the guid of unique handler to the same of original handler, so it can be removed | |
proxy.guid = fn.guid = fn.guid || jQuery.guid++; | |
return proxy; | |
}; | |
Sound.play = function() {} | |
Sound.prototype = { something; } | |
Sound.prototype.play = function() {} | |
Sound.prototype.play = myfunc | |
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.hostname; // => "example.com" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment