Skip to content

Instantly share code, notes, and snippets.

@mbostock
Created August 14, 2018 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbostock/2d60f87a292ddfa61e6389ea638c70b8 to your computer and use it in GitHub Desktop.
Save mbostock/2d60f87a292ddfa61e6389ea638c70b8 to your computer and use it in GitHub Desktop.
Override cells
<!DOCTYPE html>
<div id="test"></div>
<script type="module">
import {Runtime, Inspector, Library} from "https://unpkg.com/@observablehq/notebook-runtime?module";
import notebook from "https://api.observablehq.com/d/f523a66288d9ab04.js?key=e76719d4648ff9ff";
const test = document.querySelector("#test");
const main = {
id: "main",
modules: [
{
id: "main",
variables: notebook.modules[0].variables.map(v => {
return v.name === "subject"
? Object.assign(v, {value: "Success"})
: v;
})
}
]
};
Runtime.load(main, cell => {
if (cell.name === "greeting") {
return new Inspector(test);
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment