dist/public/index.e2772e0a6203bb4e7d8c.js 19K
dist/public/pages/about.6cf1f3ef68a498cda3ef.js 2.0K
dist/public/pages/home.027c5030538475eb1253.js 1.9K
dist/public/pages/not-found.2c096c3f04c871042160.js 448B
dist/public/pages/style-guide.d86c4d68eb850d6c36e4.js 2.0K
dist/public/pages/summary.45286bca48ea38c1929b.js 8.1K
dist/public/pages/wiki.670fa01a683d03f3c5df.js 10K
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
#!/bin/bash | |
git clone https://github.com/wikimedia/marvin.git | |
cd marvin/ | |
npm i | |
npm run build | |
# Run node server to get the HTML | |
node dist/server/index.js & | |
# Save the HTML to dist/ | |
curl http://localhost:3000/ > dist/index.html |
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
<!doctype html> | |
<html> | |
<head> | |
<title>React from CDN Demo</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
body { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
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
data:text/html, <body style='padding:0;margin:0;overflow:hidden;width:100%;height:100%;' contenteditable><textarea style="width:100%;position:absolute;top:0;left:0;right:0;bottom:0;padding:1em 10%;box-sizing:border-box;font-size:24px;font-family:monospace"></textarea><script>document.querySelector('textarea').focus()</script> |
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
export default function HeaderLevel({ | |
level, | |
children, | |
...props | |
}: { level: number } & ChildrenProps & ClassProps): JSX.Element { | |
const classes = classOf("HeaderLevel", props.class); | |
const Header = level > 0 && level <= 6 ? `h${level}` : 'div' | |
return <Header class={classes}>{children}</Header>; | |
} |
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
// Run it on http://phlogiston-dev.wmflabs.org/red_status_report.html | |
// Open devtools, paste all contents | |
var tbody = document.querySelector("table.bord tbody.list"); | |
var trs = Array.from(tbody.childNodes); | |
var trsCount = trs.reduce((a, tr) => { | |
var cell = tr.querySelector("td").textContent; | |
a[cell] = (a[cell] || 0) + 1; |
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
body{ | |
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; | |
} |
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(e) { | |
function n(r) { | |
if (t[r]) return t[r].exports; | |
var o = (t[r] = { i: r, l: !1, exports: {} }); | |
return e[r].call(o.exports, o, o.exports, n), (o.l = !0), o.exports; | |
} | |
var r = window.webpackJsonp; | |
window.webpackJsonp = function(t, a, c) { | |
for (var u, i, f, s = 0, d = []; s < t.length; s++) | |
(i = t[s]), o[i] && d.push(o[i][0]), (o[i] = 0); |
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
:root { | |
--font-size-factor: 1.125; | |
--font-size-base: 1em; | |
--font-size-caption: calc(var(--font-size-note) / var(--font-size-factor)); | |
--font-size-note: calc(var(--font-size-base) / var(--font-size-factor)); | |
--font-size-h5: calc(var(--font-size-base) * var(--font-size-factor)); | |
--font-size-h4: calc(var(--font-size-h5) * var(--font-size-factor)); | |
--font-size-h3: calc(var(--font-size-h4) * var(--font-size-factor)); | |
--font-size-h2: calc(var(--font-size-h3) * var(--font-size-factor)); |
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
// --- 1 | |
const app: FunctionalComponent<any> = (_props: any):JSX.Element => | |
<div class="App">Hello world</div>; | |
export default app | |
// --- 2 | |
const app: FunctionalComponent<any> = () => |