├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .luarc.json ├── LICENSE.md ├── README.md ├── _extensions └── drop │ ├── _extension.yml │ ├── drop-runtime.css │ └── drop-runtime.js ├── _quarto.yml ├── drop-runtime ├── build.ts ├── package-lock.json ├── package.json ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── Editor.css │ │ ├── Editor.tsx │ │ ├── Plot.css │ │ ├── Plot.tsx │ │ ├── Terminal.css │ │ ├── Terminal.tsx │ │ └── utils.ts │ ├── drop-runtime.css │ ├── drop-runtime.ts │ ├── pyodide-console.ts │ └── svg │ │ └── terminal.svg └── tsconfig.json ├── example-python.qmd ├── example.qmd └── images └── drop.gif /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/.gitignore -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/.luarc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/drop/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/_extensions/drop/_extension.yml -------------------------------------------------------------------------------- /_extensions/drop/drop-runtime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/_extensions/drop/drop-runtime.css -------------------------------------------------------------------------------- /_extensions/drop/drop-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/_extensions/drop/drop-runtime.js -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/_quarto.yml -------------------------------------------------------------------------------- /drop-runtime/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/build.ts -------------------------------------------------------------------------------- /drop-runtime/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/package-lock.json -------------------------------------------------------------------------------- /drop-runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/package.json -------------------------------------------------------------------------------- /drop-runtime/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/App.css -------------------------------------------------------------------------------- /drop-runtime/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/App.tsx -------------------------------------------------------------------------------- /drop-runtime/src/components/Editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/components/Editor.css -------------------------------------------------------------------------------- /drop-runtime/src/components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/components/Editor.tsx -------------------------------------------------------------------------------- /drop-runtime/src/components/Plot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/components/Plot.css -------------------------------------------------------------------------------- /drop-runtime/src/components/Plot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/components/Plot.tsx -------------------------------------------------------------------------------- /drop-runtime/src/components/Terminal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/components/Terminal.css -------------------------------------------------------------------------------- /drop-runtime/src/components/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/components/Terminal.tsx -------------------------------------------------------------------------------- /drop-runtime/src/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/components/utils.ts -------------------------------------------------------------------------------- /drop-runtime/src/drop-runtime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/drop-runtime.css -------------------------------------------------------------------------------- /drop-runtime/src/drop-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/drop-runtime.ts -------------------------------------------------------------------------------- /drop-runtime/src/pyodide-console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/pyodide-console.ts -------------------------------------------------------------------------------- /drop-runtime/src/svg/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/src/svg/terminal.svg -------------------------------------------------------------------------------- /drop-runtime/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/drop-runtime/tsconfig.json -------------------------------------------------------------------------------- /example-python.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/example-python.qmd -------------------------------------------------------------------------------- /example.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/example.qmd -------------------------------------------------------------------------------- /images/drop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-wasm/quarto-drop/HEAD/images/drop.gif --------------------------------------------------------------------------------