├── .gitignore ├── LICENSE ├── README.md ├── _extensions └── interactive-sql │ ├── _extension.yml │ ├── interactive-sql.lua │ └── resources │ ├── css │ └── interactive-sql.css │ ├── header.html │ └── js │ └── interactive-sql.js ├── docs ├── example-revealjs.html ├── example-revealjs_files │ └── libs │ │ ├── clipboard │ │ └── clipboard.min.js │ │ ├── quarto-contrib │ │ └── interactive-sql-1.0.0 │ │ │ ├── interactive-sql.css │ │ │ └── interactive-sql.js │ │ ├── quarto-html │ │ ├── light-border.css │ │ ├── popper.min.js │ │ ├── quarto-html.min.css │ │ ├── quarto-syntax-highlighting.css │ │ ├── tabby.min.js │ │ ├── tippy.css │ │ └── tippy.umd.min.js │ │ └── revealjs │ │ ├── dist │ │ ├── reset.css │ │ ├── reveal.css │ │ ├── reveal.esm.js │ │ ├── reveal.esm.js.map │ │ ├── reveal.js │ │ ├── reveal.js.map │ │ └── theme │ │ │ ├── fonts │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ │ └── quarto.css │ │ └── plugin │ │ ├── highlight │ │ ├── highlight.esm.js │ │ ├── highlight.js │ │ ├── monokai.css │ │ ├── plugin.js │ │ └── zenburn.css │ │ ├── markdown │ │ ├── markdown.esm.js │ │ ├── markdown.js │ │ └── plugin.js │ │ ├── math │ │ ├── katex.js │ │ ├── math.esm.js │ │ ├── math.js │ │ ├── mathjax2.js │ │ ├── mathjax3.js │ │ └── plugin.js │ │ ├── notes │ │ ├── notes.esm.js │ │ ├── notes.js │ │ └── plugin.js │ │ ├── pdf-export │ │ ├── pdfexport.js │ │ └── plugin.yml │ │ ├── quarto-line-highlight │ │ ├── line-highlight.css │ │ ├── line-highlight.js │ │ └── plugin.yml │ │ ├── quarto-support │ │ ├── footer.css │ │ ├── plugin.yml │ │ └── support.js │ │ ├── reveal-menu │ │ ├── menu.css │ │ ├── menu.js │ │ ├── plugin.yml │ │ ├── quarto-menu.css │ │ └── quarto-menu.js │ │ ├── search │ │ ├── plugin.js │ │ ├── search.esm.js │ │ └── search.js │ │ └── zoom │ │ ├── plugin.js │ │ ├── zoom.esm.js │ │ └── zoom.js ├── example.html ├── example_files │ └── libs │ │ ├── bootstrap │ │ ├── bootstrap-icons.css │ │ ├── bootstrap-icons.woff │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ ├── quarto-contrib │ │ └── interactive-sql-1.0.0 │ │ │ ├── interactive-sql.css │ │ │ └── interactive-sql.js │ │ └── quarto-html │ │ ├── anchor.min.js │ │ ├── popper.min.js │ │ ├── quarto-syntax-highlighting.css │ │ ├── quarto.js │ │ ├── tippy.css │ │ └── tippy.umd.min.js └── hr-SQL-Sample-Database-Schema.png ├── example-revealjs.qmd ├── example.qmd ├── hr-SQL-Sample-Database-Schema.png ├── hr.sql ├── others ├── chinook.db ├── employees.db └── employees.sql └── testing.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/interactive-sql/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/_extensions/interactive-sql/_extension.yml -------------------------------------------------------------------------------- /_extensions/interactive-sql/interactive-sql.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/_extensions/interactive-sql/interactive-sql.lua -------------------------------------------------------------------------------- /_extensions/interactive-sql/resources/css/interactive-sql.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/_extensions/interactive-sql/resources/css/interactive-sql.css -------------------------------------------------------------------------------- /_extensions/interactive-sql/resources/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/_extensions/interactive-sql/resources/header.html -------------------------------------------------------------------------------- /_extensions/interactive-sql/resources/js/interactive-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/_extensions/interactive-sql/resources/js/interactive-sql.js -------------------------------------------------------------------------------- /docs/example-revealjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs.html -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-contrib/interactive-sql-1.0.0/interactive-sql.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/quarto-contrib/interactive-sql-1.0.0/interactive-sql.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-contrib/interactive-sql-1.0.0/interactive-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/quarto-contrib/interactive-sql-1.0.0/interactive-sql.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-html/light-border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/quarto-html/light-border.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-html/quarto-html.min.css: -------------------------------------------------------------------------------- 1 | /*# sourceMappingURL=0a6b880beb84f9b6f36107a76f82c5b1.css.map */ 2 | -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-html/tabby.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/quarto-html/tabby.min.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/reset.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/reveal.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/reveal.esm.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/reveal.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/reveal.js.map -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/dist/theme/quarto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/dist/theme/quarto.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/math/katex.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/math/math.esm.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/math/math.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/math/plugin.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/notes/notes.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/notes/plugin.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/pdf-export/pdfexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/pdf-export/pdfexport.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/pdf-export/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/pdf-export/plugin.yml -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/quarto-line-highlight/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/quarto-line-highlight/plugin.yml -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/quarto-support/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/quarto-support/footer.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/quarto-support/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/quarto-support/plugin.yml -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/quarto-support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/quarto-support/support.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/menu.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/menu.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/plugin.yml -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/quarto-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/reveal-menu/quarto-menu.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/search/plugin.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/search/search.esm.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/search/search.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /docs/example-revealjs_files/libs/revealjs/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example-revealjs_files/libs/revealjs/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /docs/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example.html -------------------------------------------------------------------------------- /docs/example_files/libs/bootstrap/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/bootstrap/bootstrap-icons.css -------------------------------------------------------------------------------- /docs/example_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /docs/example_files/libs/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /docs/example_files/libs/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /docs/example_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /docs/example_files/libs/quarto-contrib/interactive-sql-1.0.0/interactive-sql.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/quarto-contrib/interactive-sql-1.0.0/interactive-sql.css -------------------------------------------------------------------------------- /docs/example_files/libs/quarto-contrib/interactive-sql-1.0.0/interactive-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/quarto-contrib/interactive-sql-1.0.0/interactive-sql.js -------------------------------------------------------------------------------- /docs/example_files/libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/quarto-html/anchor.min.js -------------------------------------------------------------------------------- /docs/example_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /docs/example_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /docs/example_files/libs/quarto-html/quarto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/quarto-html/quarto.js -------------------------------------------------------------------------------- /docs/example_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /docs/example_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/example_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /docs/hr-SQL-Sample-Database-Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/docs/hr-SQL-Sample-Database-Schema.png -------------------------------------------------------------------------------- /example-revealjs.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/example-revealjs.qmd -------------------------------------------------------------------------------- /example.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/example.qmd -------------------------------------------------------------------------------- /hr-SQL-Sample-Database-Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/hr-SQL-Sample-Database-Schema.png -------------------------------------------------------------------------------- /hr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/hr.sql -------------------------------------------------------------------------------- /others/chinook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/others/chinook.db -------------------------------------------------------------------------------- /others/employees.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/others/employees.db -------------------------------------------------------------------------------- /others/employees.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/others/employees.sql -------------------------------------------------------------------------------- /testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shafayetShafee/interactive-sql/HEAD/testing.sh --------------------------------------------------------------------------------