-
In the Observable Framework docs (with source at https://github.com/observablehq/framework/blob/main/docs/javascript/display.md ), it says, "The built-in I don't know where the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It’s built-in to Observable Framework. I’m not sure if this answers your question, but it’s implemented as a “shadow” variable using the Observable Runtime; each code block has its own Lines 52 to 55 in c114f88 |
Beta Was this translation helpful? Give feedback.
It’s built-in to Observable Framework. I’m not sure if this answers your question, but it’s implemented as a “shadow” variable using the Observable Runtime; each code block has its own
display
function that is uniquely bound to its output location. You can find the implementation here:framework/src/client/main.js
Lines 52 to 55 in c114f88