gitextract_uics36sh/ ├── .github/ │ └── workflows/ │ ├── build-docs.yml │ ├── npm-publish-core.yml │ ├── npm-publish-create.yml │ ├── npm-publish-publisher.yml │ ├── npm-publish-server.yml │ └── npm-publish-themes.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs_src/ │ ├── .gitignore │ ├── exlibris/ │ │ ├── Button.svelte │ │ ├── Counter.svelte │ │ ├── Input.svelte │ │ ├── Modal.svelte │ │ ├── chota.js │ │ └── spoiler.md │ ├── package.json │ ├── src/ │ │ ├── examples.css │ │ ├── includes/ │ │ │ ├── error.md │ │ │ ├── github.svelte │ │ │ ├── logo.md │ │ │ ├── opengraph.svelte │ │ │ ├── sidebar.md │ │ │ └── topbar.md │ │ ├── pages/ │ │ │ ├── builtins/ │ │ │ │ ├── example.md │ │ │ │ └── properties.md │ │ │ ├── config/ │ │ │ │ ├── aliases.md │ │ │ │ ├── basepath.md │ │ │ │ ├── file.md │ │ │ │ ├── pathes.md │ │ │ │ ├── preprocess.md │ │ │ │ ├── theme.md │ │ │ │ └── title.md │ │ │ ├── getting-started.md │ │ │ ├── index.md │ │ │ ├── introduction.md │ │ │ ├── publishing/ │ │ │ │ └── ghpages.md │ │ │ ├── theming/ │ │ │ │ ├── custom-theme.md │ │ │ │ ├── examples.md │ │ │ │ ├── list/ │ │ │ │ │ ├── default.md │ │ │ │ │ └── light.md │ │ │ │ └── theme-tuning.md │ │ │ ├── theming.md │ │ │ └── writing/ │ │ │ ├── includes.md │ │ │ ├── mdsv.md │ │ │ ├── routing.md │ │ │ ├── settings.md │ │ │ ├── static.md │ │ │ └── structure.md │ │ └── theme.css │ └── svelte-docs.config.js ├── package.json ├── packages/ │ ├── core/ │ │ ├── App.svelte │ │ ├── aliases/ │ │ │ └── rollup_plugin_aliases.js │ │ ├── builtins/ │ │ │ ├── Example/ │ │ │ │ ├── Example.svelte │ │ │ │ ├── iframe.js │ │ │ │ └── replacer.js │ │ │ ├── Properties/ │ │ │ │ ├── parser.js │ │ │ │ └── replacer.js │ │ │ ├── blockparser.js │ │ │ ├── rollup_plugin_builtins.js │ │ │ ├── rollup_plugin_examples.js │ │ │ └── svelte_preprocess_builtins.js │ │ ├── config.js │ │ ├── constants.js │ │ ├── examples.main.js │ │ ├── fixidents/ │ │ │ └── rollup_plugin_fixidents.js │ │ ├── highlight.js │ │ ├── indexer/ │ │ │ └── rollup_plugin_indexer.js │ │ ├── main.js │ │ ├── navigation.js │ │ ├── package.json │ │ ├── pages/ │ │ │ ├── rollup_plugin_pages.js │ │ │ └── routes.js │ │ ├── replacer/ │ │ │ └── rollup_plugin_replacer.js │ │ ├── rollup.config.js │ │ ├── stores.js │ │ ├── syncer/ │ │ │ └── rollup_plugin_syncer.js │ │ ├── themes.js │ │ ├── utils.js │ │ └── watcher.js │ ├── create/ │ │ ├── cli.js │ │ └── package.json │ ├── publisher/ │ │ ├── package.json │ │ └── publisher.js │ ├── server/ │ │ ├── package.json │ │ └── server.js │ └── themes/ │ ├── default/ │ │ ├── components/ │ │ │ ├── Document.svelte │ │ │ ├── Example.svelte │ │ │ ├── Layout.svelte │ │ │ ├── Properties.svelte │ │ │ ├── Sections.svelte │ │ │ └── Topbar.svelte │ │ ├── info.md │ │ ├── style.css │ │ └── styles/ │ │ ├── fonts.css │ │ ├── highlight.css │ │ ├── layout.css │ │ └── typography.css │ ├── light/ │ │ ├── components/ │ │ │ ├── Example.svelte │ │ │ ├── Layout.svelte │ │ │ └── Properties.svelte │ │ ├── info.md │ │ ├── style.css │ │ └── styles/ │ │ ├── highlight.css │ │ ├── layout.css │ │ └── typography.css │ ├── package.json │ └── utils.js ├── scripts/ │ ├── clean.js │ ├── install.js │ └── link.js └── template/ ├── .gitignore ├── package.json ├── src/ │ ├── examples.css │ ├── includes/ │ │ ├── error.md │ │ ├── logo.md │ │ ├── sidebar.md │ │ └── topbar.md │ ├── pages/ │ │ ├── components/ │ │ │ └── button.md │ │ ├── getting-started.md │ │ └── index.md │ └── theme.css └── svelte-docs.config.js