├── .github └── workflows │ ├── deploy.yml │ ├── links.yml │ └── preview.yml ├── .gitignore ├── .gitpod.yml ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── core ├── .gitignore ├── README.md ├── package.json ├── src │ ├── index.ts │ └── monaco-editor-wrapper-utils.ts ├── tsconfig.json └── vite.bundle.ts ├── hugo ├── .gitignore ├── README.md ├── archetypes │ └── default.md ├── assets │ └── scripts │ │ ├── arithmetics │ │ ├── arithmetics-tools.tsx │ │ └── arithmetics.tsx │ │ ├── domainmodel │ │ ├── d3tree.tsx │ │ ├── domainmodel-tools.ts │ │ └── domainmodel.tsx │ │ ├── minilogo │ │ ├── minilogo-tools.ts │ │ └── minilogo.tsx │ │ ├── sql │ │ ├── constants.ts │ │ ├── language-server.ts │ │ ├── sql.tmLanguage.json │ │ └── ui.tsx │ │ └── statemachine │ │ ├── statemachine-tools.ts │ │ └── statemachine.tsx ├── babel.config.cjs ├── config.toml ├── content │ ├── _index.html │ ├── api │ │ └── _index.md │ ├── docs │ │ ├── _index.md │ │ ├── introduction │ │ │ ├── _index.md │ │ │ ├── features.md │ │ │ ├── playground.md │ │ │ └── showcases.md │ │ ├── learn │ │ │ ├── _index.md │ │ │ ├── minilogo │ │ │ │ ├── _index.md │ │ │ │ ├── building_an_extension │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── installed-extension.jpg │ │ │ │ │ ├── minilogo-vsix.jpg │ │ │ │ │ ├── minilogo-with-icon.png │ │ │ │ │ ├── vsix-install.jpg │ │ │ │ │ └── vsix-installed.jpg │ │ │ │ ├── customizing_cli.md │ │ │ │ ├── generation.md │ │ │ │ ├── generation_in_the_web.md │ │ │ │ ├── langium_and_monaco.md │ │ │ │ ├── validation.md │ │ │ │ └── writing_a_grammar.md │ │ │ └── workflow │ │ │ │ ├── _index.md │ │ │ │ ├── create_validations.md │ │ │ │ ├── generate_ast.md │ │ │ │ ├── generate_everything.md │ │ │ │ ├── install.md │ │ │ │ ├── resolve_cross_references.md │ │ │ │ ├── scaffold.md │ │ │ │ └── write_grammar.md │ │ ├── recipes │ │ │ ├── _index.md │ │ │ ├── builtin-library.md │ │ │ ├── code-bundling.md │ │ │ ├── formatting.md │ │ │ ├── keywords-as-identifiers │ │ │ │ ├── _index.md │ │ │ │ ├── fixed-1-grammar.png │ │ │ │ ├── fixed-2-token.png │ │ │ │ ├── fixed-3-style-1.png │ │ │ │ ├── fixed-3-style-2.png │ │ │ │ └── problem.png │ │ │ ├── lexing │ │ │ │ ├── _index.md │ │ │ │ ├── case-insensitive-languages.md │ │ │ │ └── indentation-sensitive-languages.md │ │ │ ├── multiple-languages.md │ │ │ ├── performance │ │ │ │ ├── _index.md │ │ │ │ └── caches.md │ │ │ ├── scoping │ │ │ │ ├── _index.md │ │ │ │ ├── class-member.md │ │ │ │ ├── file-based.md │ │ │ │ └── qualified-name.md │ │ │ └── validation │ │ │ │ ├── _index.md │ │ │ │ └── dependency-loops.md │ │ └── reference │ │ │ ├── _index.md │ │ │ ├── configuration-services.md │ │ │ ├── document-lifecycle.md │ │ │ ├── glossary.md │ │ │ ├── grammar-language │ │ │ ├── _index.md │ │ │ └── infix-operators │ │ │ │ ├── _index.md │ │ │ │ ├── manual-implementation.md │ │ │ │ └── syntactical-implementation.md │ │ │ └── semantic-model.md │ ├── playground │ │ ├── Tree.tsx │ │ ├── _index.html │ │ ├── common.ts │ │ ├── constants.ts │ │ ├── langium-worker.ts │ │ ├── preprocess.ts │ │ ├── types.ts │ │ ├── user-validator.ts │ │ ├── user-worker.ts │ │ ├── utils.ts │ │ └── worker-utils.ts │ └── showcase │ │ ├── _index.html │ │ ├── arithmetics.html │ │ ├── domainmodel.html │ │ ├── minilogo.html │ │ ├── openapi.html │ │ ├── sql.html │ │ └── statemachine.html ├── layouts │ ├── langium │ │ ├── baseof.html │ │ ├── index.html │ │ ├── list.html │ │ ├── showcase-page.html │ │ └── single.html │ ├── partials │ │ ├── langium-community.html │ │ ├── langium-footer.html │ │ ├── langium-head.html │ │ ├── langium-header.html │ │ ├── langium-mobile-menu.html │ │ ├── langium-nav.html │ │ └── langium-scripts.html │ ├── playground │ │ ├── baseof.html │ │ └── index.html │ └── shortcodes │ │ └── notification.html ├── package.json ├── static │ ├── assets │ │ ├── BestSolution_OpenAPI.svg │ │ ├── Customize.svg │ │ ├── Customize_dark.svg │ │ ├── Flexible.svg │ │ ├── Flexible_dark.svg │ │ ├── GitHub-Mark-120px-plus.png │ │ ├── GitHub-Mark-Light-120px-plus.png │ │ ├── Langium_Arithmetics.svg │ │ ├── Langium_Domainmodel.svg │ │ ├── Langium_MiniLogo.svg │ │ ├── Langium_SQL.svg │ │ ├── Langium_Statemachine.svg │ │ ├── Twitter social icons - circle - blue.svg │ │ ├── Twitter social icons - circle - white.svg │ │ ├── TypeScript.svg │ │ ├── TypeScript_dark.svg │ │ ├── Versatile.svg │ │ ├── Versatile_dark.svg │ │ ├── carousel-left-dark.svg │ │ ├── carousel-left-light.svg │ │ ├── carousel-right-dark.svg │ │ ├── carousel-right-light.svg │ │ ├── checkmark.svg │ │ ├── clear.svg │ │ ├── clear_dark.svg │ │ ├── dependency-loops.png │ │ ├── everywere.png │ │ ├── everywere_dark.png │ │ ├── experience.svg │ │ ├── experience_dark.svg │ │ ├── external_link.svg │ │ ├── langium_logo_w_nib.svg │ │ ├── low barrier.svg │ │ ├── low barrier_dark.svg │ │ ├── nib.svg │ │ ├── npm-square-red-1.svg │ │ ├── office.jpg │ │ ├── scroll-down.svg │ │ ├── share.svg │ │ ├── simple.svg │ │ ├── simple_dark.svg │ │ ├── social-card.jpg │ │ ├── social-card.svg │ │ └── tree.svg │ ├── custom.css │ ├── favicon │ │ ├── 16px.png │ │ └── 32px.png │ ├── index.js │ └── prism │ │ ├── langium-prism.js │ │ ├── prism.css │ │ └── prism.js ├── themes │ └── hugo-geekdoc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── archetypes │ │ ├── docs.md │ │ └── posts.md │ │ ├── assets │ │ ├── js │ │ │ └── search.js │ │ ├── search-data.json │ │ └── sprites │ │ │ └── geekdoc.svg │ │ ├── data │ │ ├── assets-static.json │ │ ├── assets.json │ │ └── menu │ │ │ ├── extra.yml │ │ │ └── more.yml │ │ ├── images │ │ ├── readme.png │ │ ├── screenshot.png │ │ └── tn.png │ │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── _markup │ │ │ │ ├── render-heading.html │ │ │ │ ├── render-image.html │ │ │ │ └── render-link.html │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── partials │ │ │ ├── content.html │ │ │ ├── foot.html │ │ │ ├── head │ │ │ │ ├── custom.html │ │ │ │ ├── favicons.html │ │ │ │ ├── meta.html │ │ │ │ ├── microformats.html │ │ │ │ ├── others.html │ │ │ │ ├── prism.html │ │ │ │ ├── rel-me.html │ │ │ │ └── schema.html │ │ │ ├── menu-bundle.html │ │ │ ├── menu-extra.html │ │ │ ├── menu-filetree.html │ │ │ ├── menu.html │ │ │ ├── page-footer.html │ │ │ ├── page-header.html │ │ │ ├── search.html │ │ │ ├── site-footer.html │ │ │ ├── site-header.html │ │ │ ├── svg-icon-symbols.html │ │ │ └── title.html │ │ ├── posts │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── robots.txt │ │ ├── shortcodes │ │ │ ├── button.html │ │ │ ├── columns.html │ │ │ ├── expand.html │ │ │ ├── hint.html │ │ │ ├── icon.html │ │ │ ├── img.html │ │ │ ├── include.html │ │ │ ├── katex.html │ │ │ ├── mermaid.html │ │ │ ├── tab.html │ │ │ ├── tabs.html │ │ │ ├── toc-tree.html │ │ │ └── toc.html │ │ └── taxonomy │ │ │ └── list.html │ │ ├── static │ │ ├── brand.svg │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.svg │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-70x70.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── site.webmanifest │ │ ├── fonts │ │ │ ├── GeekdocIcons.woff │ │ │ ├── GeekdocIcons.woff2 │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ │ ├── LiberationMono.woff │ │ │ ├── LiberationMono.woff2 │ │ │ ├── LiberationSans-Bold.woff │ │ │ ├── LiberationSans-Bold.woff2 │ │ │ ├── LiberationSans-BoldItalic.woff │ │ │ ├── LiberationSans-BoldItalic.woff2 │ │ │ ├── LiberationSans-Italic.woff │ │ │ ├── LiberationSans-Italic.woff2 │ │ │ ├── LiberationSans.woff │ │ │ ├── LiberationSans.woff2 │ │ │ ├── Metropolis.woff │ │ │ └── Metropolis.woff2 │ │ ├── js │ │ │ ├── auto-render-8634ca81ec.min.js │ │ │ ├── clipboard-27784b7376.min.js │ │ │ ├── clipboard-loader-832dc83c27.min.js │ │ │ ├── copycode-fd03c0d24f.min.js │ │ │ ├── darkmode-ce906ea916.min.js │ │ │ ├── flexsearch-e54a90f706.min.js │ │ │ ├── groupBy-700a0a22e5.min.js │ │ │ ├── katex-bfca83b6fc.min.js │ │ │ ├── katex-loader-3cfedeea38.min.js │ │ │ ├── mermaid-beaf30d1e1.min.js │ │ │ └── mermaid-loader-1bd1515cbf.min.js │ │ ├── katex-fd1ecc245b.min.css │ │ ├── main-61795ecfac.min.css │ │ ├── mobile-e214817c8f.min.css │ │ └── print-f79fc3e5d7.min.css │ │ └── theme.toml ├── tsconfig.json └── vite.showcase-worker.ts ├── package.json ├── scripts └── check-links.ts ├── tailwind ├── README.md ├── package.json ├── style.css └── tailwind.config.js └── tsconfig.json /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/.github/workflows/links.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /public/ 2 | node_modules/ 3 | .DS_Store 4 | .hugo_build.lock 5 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/README.md -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | bundle/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/core/README.md -------------------------------------------------------------------------------- /core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/core/package.json -------------------------------------------------------------------------------- /core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/core/src/index.ts -------------------------------------------------------------------------------- /core/src/monaco-editor-wrapper-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/core/src/monaco-editor-wrapper-utils.ts -------------------------------------------------------------------------------- /core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/core/tsconfig.json -------------------------------------------------------------------------------- /core/vite.bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/core/vite.bundle.ts -------------------------------------------------------------------------------- /hugo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/.gitignore -------------------------------------------------------------------------------- /hugo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/README.md -------------------------------------------------------------------------------- /hugo/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/archetypes/default.md -------------------------------------------------------------------------------- /hugo/assets/scripts/arithmetics/arithmetics-tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/arithmetics/arithmetics-tools.tsx -------------------------------------------------------------------------------- /hugo/assets/scripts/arithmetics/arithmetics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/arithmetics/arithmetics.tsx -------------------------------------------------------------------------------- /hugo/assets/scripts/domainmodel/d3tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/domainmodel/d3tree.tsx -------------------------------------------------------------------------------- /hugo/assets/scripts/domainmodel/domainmodel-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/domainmodel/domainmodel-tools.ts -------------------------------------------------------------------------------- /hugo/assets/scripts/domainmodel/domainmodel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/domainmodel/domainmodel.tsx -------------------------------------------------------------------------------- /hugo/assets/scripts/minilogo/minilogo-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/minilogo/minilogo-tools.ts -------------------------------------------------------------------------------- /hugo/assets/scripts/minilogo/minilogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/minilogo/minilogo.tsx -------------------------------------------------------------------------------- /hugo/assets/scripts/sql/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/sql/constants.ts -------------------------------------------------------------------------------- /hugo/assets/scripts/sql/language-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/sql/language-server.ts -------------------------------------------------------------------------------- /hugo/assets/scripts/sql/sql.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/sql/sql.tmLanguage.json -------------------------------------------------------------------------------- /hugo/assets/scripts/sql/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/sql/ui.tsx -------------------------------------------------------------------------------- /hugo/assets/scripts/statemachine/statemachine-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/statemachine/statemachine-tools.ts -------------------------------------------------------------------------------- /hugo/assets/scripts/statemachine/statemachine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/assets/scripts/statemachine/statemachine.tsx -------------------------------------------------------------------------------- /hugo/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/babel.config.cjs -------------------------------------------------------------------------------- /hugo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/config.toml -------------------------------------------------------------------------------- /hugo/content/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/_index.html -------------------------------------------------------------------------------- /hugo/content/api/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/api/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/introduction/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/introduction/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/introduction/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/introduction/features.md -------------------------------------------------------------------------------- /hugo/content/docs/introduction/playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/introduction/playground.md -------------------------------------------------------------------------------- /hugo/content/docs/introduction/showcases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/introduction/showcases.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/building_an_extension/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/building_an_extension/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/building_an_extension/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/building_an_extension/icon.png -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/building_an_extension/installed-extension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/building_an_extension/installed-extension.jpg -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/building_an_extension/minilogo-vsix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/building_an_extension/minilogo-vsix.jpg -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/building_an_extension/minilogo-with-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/building_an_extension/minilogo-with-icon.png -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/building_an_extension/vsix-install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/building_an_extension/vsix-install.jpg -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/building_an_extension/vsix-installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/building_an_extension/vsix-installed.jpg -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/customizing_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/customizing_cli.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/generation.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/generation_in_the_web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/generation_in_the_web.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/langium_and_monaco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/langium_and_monaco.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/validation.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/minilogo/writing_a_grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/minilogo/writing_a_grammar.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/workflow/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/workflow/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/workflow/create_validations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/workflow/create_validations.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/workflow/generate_ast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/workflow/generate_ast.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/workflow/generate_everything.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/workflow/generate_everything.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/workflow/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/workflow/install.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/workflow/resolve_cross_references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/workflow/resolve_cross_references.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/workflow/scaffold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/workflow/scaffold.md -------------------------------------------------------------------------------- /hugo/content/docs/learn/workflow/write_grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/learn/workflow/write_grammar.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/builtin-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/builtin-library.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/code-bundling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/code-bundling.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/formatting.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/keywords-as-identifiers/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/keywords-as-identifiers/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/keywords-as-identifiers/fixed-1-grammar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/keywords-as-identifiers/fixed-1-grammar.png -------------------------------------------------------------------------------- /hugo/content/docs/recipes/keywords-as-identifiers/fixed-2-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/keywords-as-identifiers/fixed-2-token.png -------------------------------------------------------------------------------- /hugo/content/docs/recipes/keywords-as-identifiers/fixed-3-style-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/keywords-as-identifiers/fixed-3-style-1.png -------------------------------------------------------------------------------- /hugo/content/docs/recipes/keywords-as-identifiers/fixed-3-style-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/keywords-as-identifiers/fixed-3-style-2.png -------------------------------------------------------------------------------- /hugo/content/docs/recipes/keywords-as-identifiers/problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/keywords-as-identifiers/problem.png -------------------------------------------------------------------------------- /hugo/content/docs/recipes/lexing/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Lexing 3 | weight: 50 4 | --- -------------------------------------------------------------------------------- /hugo/content/docs/recipes/lexing/case-insensitive-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/lexing/case-insensitive-languages.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/lexing/indentation-sensitive-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/lexing/indentation-sensitive-languages.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/multiple-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/multiple-languages.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/performance/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Performance" 3 | weight: 175 4 | --- -------------------------------------------------------------------------------- /hugo/content/docs/recipes/performance/caches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/performance/caches.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/scoping/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/scoping/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/scoping/class-member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/scoping/class-member.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/scoping/file-based.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/scoping/file-based.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/scoping/qualified-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/scoping/qualified-name.md -------------------------------------------------------------------------------- /hugo/content/docs/recipes/validation/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Validation 3 | weight: 150 4 | --- -------------------------------------------------------------------------------- /hugo/content/docs/recipes/validation/dependency-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/recipes/validation/dependency-loops.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/configuration-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/configuration-services.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/document-lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/document-lifecycle.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/glossary.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/grammar-language/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/grammar-language/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/grammar-language/infix-operators/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/grammar-language/infix-operators/_index.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/grammar-language/infix-operators/manual-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/grammar-language/infix-operators/manual-implementation.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/grammar-language/infix-operators/syntactical-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/grammar-language/infix-operators/syntactical-implementation.md -------------------------------------------------------------------------------- /hugo/content/docs/reference/semantic-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/docs/reference/semantic-model.md -------------------------------------------------------------------------------- /hugo/content/playground/Tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/Tree.tsx -------------------------------------------------------------------------------- /hugo/content/playground/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/_index.html -------------------------------------------------------------------------------- /hugo/content/playground/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/common.ts -------------------------------------------------------------------------------- /hugo/content/playground/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/constants.ts -------------------------------------------------------------------------------- /hugo/content/playground/langium-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/langium-worker.ts -------------------------------------------------------------------------------- /hugo/content/playground/preprocess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/preprocess.ts -------------------------------------------------------------------------------- /hugo/content/playground/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/types.ts -------------------------------------------------------------------------------- /hugo/content/playground/user-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/user-validator.ts -------------------------------------------------------------------------------- /hugo/content/playground/user-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/user-worker.ts -------------------------------------------------------------------------------- /hugo/content/playground/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/utils.ts -------------------------------------------------------------------------------- /hugo/content/playground/worker-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/playground/worker-utils.ts -------------------------------------------------------------------------------- /hugo/content/showcase/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/showcase/_index.html -------------------------------------------------------------------------------- /hugo/content/showcase/arithmetics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/showcase/arithmetics.html -------------------------------------------------------------------------------- /hugo/content/showcase/domainmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/showcase/domainmodel.html -------------------------------------------------------------------------------- /hugo/content/showcase/minilogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/showcase/minilogo.html -------------------------------------------------------------------------------- /hugo/content/showcase/openapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/showcase/openapi.html -------------------------------------------------------------------------------- /hugo/content/showcase/sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/showcase/sql.html -------------------------------------------------------------------------------- /hugo/content/showcase/statemachine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/content/showcase/statemachine.html -------------------------------------------------------------------------------- /hugo/layouts/langium/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/langium/baseof.html -------------------------------------------------------------------------------- /hugo/layouts/langium/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/langium/index.html -------------------------------------------------------------------------------- /hugo/layouts/langium/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/langium/list.html -------------------------------------------------------------------------------- /hugo/layouts/langium/showcase-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/langium/showcase-page.html -------------------------------------------------------------------------------- /hugo/layouts/langium/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/langium/single.html -------------------------------------------------------------------------------- /hugo/layouts/partials/langium-community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/partials/langium-community.html -------------------------------------------------------------------------------- /hugo/layouts/partials/langium-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/partials/langium-footer.html -------------------------------------------------------------------------------- /hugo/layouts/partials/langium-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/partials/langium-head.html -------------------------------------------------------------------------------- /hugo/layouts/partials/langium-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/partials/langium-header.html -------------------------------------------------------------------------------- /hugo/layouts/partials/langium-mobile-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/partials/langium-mobile-menu.html -------------------------------------------------------------------------------- /hugo/layouts/partials/langium-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/partials/langium-nav.html -------------------------------------------------------------------------------- /hugo/layouts/partials/langium-scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/partials/langium-scripts.html -------------------------------------------------------------------------------- /hugo/layouts/playground/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/playground/baseof.html -------------------------------------------------------------------------------- /hugo/layouts/playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/playground/index.html -------------------------------------------------------------------------------- /hugo/layouts/shortcodes/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/layouts/shortcodes/notification.html -------------------------------------------------------------------------------- /hugo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/package.json -------------------------------------------------------------------------------- /hugo/static/assets/BestSolution_OpenAPI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/BestSolution_OpenAPI.svg -------------------------------------------------------------------------------- /hugo/static/assets/Customize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Customize.svg -------------------------------------------------------------------------------- /hugo/static/assets/Customize_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Customize_dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/Flexible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Flexible.svg -------------------------------------------------------------------------------- /hugo/static/assets/Flexible_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Flexible_dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/GitHub-Mark-120px-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/GitHub-Mark-120px-plus.png -------------------------------------------------------------------------------- /hugo/static/assets/GitHub-Mark-Light-120px-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/GitHub-Mark-Light-120px-plus.png -------------------------------------------------------------------------------- /hugo/static/assets/Langium_Arithmetics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Langium_Arithmetics.svg -------------------------------------------------------------------------------- /hugo/static/assets/Langium_Domainmodel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Langium_Domainmodel.svg -------------------------------------------------------------------------------- /hugo/static/assets/Langium_MiniLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Langium_MiniLogo.svg -------------------------------------------------------------------------------- /hugo/static/assets/Langium_SQL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Langium_SQL.svg -------------------------------------------------------------------------------- /hugo/static/assets/Langium_Statemachine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Langium_Statemachine.svg -------------------------------------------------------------------------------- /hugo/static/assets/Twitter social icons - circle - blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Twitter social icons - circle - blue.svg -------------------------------------------------------------------------------- /hugo/static/assets/Twitter social icons - circle - white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Twitter social icons - circle - white.svg -------------------------------------------------------------------------------- /hugo/static/assets/TypeScript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/TypeScript.svg -------------------------------------------------------------------------------- /hugo/static/assets/TypeScript_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/TypeScript_dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/Versatile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Versatile.svg -------------------------------------------------------------------------------- /hugo/static/assets/Versatile_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/Versatile_dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/carousel-left-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/carousel-left-dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/carousel-left-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/carousel-left-light.svg -------------------------------------------------------------------------------- /hugo/static/assets/carousel-right-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/carousel-right-dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/carousel-right-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/carousel-right-light.svg -------------------------------------------------------------------------------- /hugo/static/assets/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/checkmark.svg -------------------------------------------------------------------------------- /hugo/static/assets/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/clear.svg -------------------------------------------------------------------------------- /hugo/static/assets/clear_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/clear_dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/dependency-loops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/dependency-loops.png -------------------------------------------------------------------------------- /hugo/static/assets/everywere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/everywere.png -------------------------------------------------------------------------------- /hugo/static/assets/everywere_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/everywere_dark.png -------------------------------------------------------------------------------- /hugo/static/assets/experience.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/experience.svg -------------------------------------------------------------------------------- /hugo/static/assets/experience_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/experience_dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/external_link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/external_link.svg -------------------------------------------------------------------------------- /hugo/static/assets/langium_logo_w_nib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/langium_logo_w_nib.svg -------------------------------------------------------------------------------- /hugo/static/assets/low barrier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/low barrier.svg -------------------------------------------------------------------------------- /hugo/static/assets/low barrier_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/low barrier_dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/nib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/nib.svg -------------------------------------------------------------------------------- /hugo/static/assets/npm-square-red-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/npm-square-red-1.svg -------------------------------------------------------------------------------- /hugo/static/assets/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/office.jpg -------------------------------------------------------------------------------- /hugo/static/assets/scroll-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/scroll-down.svg -------------------------------------------------------------------------------- /hugo/static/assets/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/share.svg -------------------------------------------------------------------------------- /hugo/static/assets/simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/simple.svg -------------------------------------------------------------------------------- /hugo/static/assets/simple_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/simple_dark.svg -------------------------------------------------------------------------------- /hugo/static/assets/social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/social-card.jpg -------------------------------------------------------------------------------- /hugo/static/assets/social-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/social-card.svg -------------------------------------------------------------------------------- /hugo/static/assets/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/assets/tree.svg -------------------------------------------------------------------------------- /hugo/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/custom.css -------------------------------------------------------------------------------- /hugo/static/favicon/16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/favicon/16px.png -------------------------------------------------------------------------------- /hugo/static/favicon/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/favicon/32px.png -------------------------------------------------------------------------------- /hugo/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/index.js -------------------------------------------------------------------------------- /hugo/static/prism/langium-prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/prism/langium-prism.js -------------------------------------------------------------------------------- /hugo/static/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/prism/prism.css -------------------------------------------------------------------------------- /hugo/static/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/static/prism/prism.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/LICENSE -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/README.md -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/VERSION: -------------------------------------------------------------------------------- 1 | v0.21.0 2 | -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/archetypes/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/archetypes/docs.md -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/archetypes/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/archetypes/posts.md -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/assets/js/search.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/assets/search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/assets/search-data.json -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/assets/sprites/geekdoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/assets/sprites/geekdoc.svg -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/data/assets-static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/data/assets-static.json -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/data/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/data/assets.json -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/data/menu/extra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/data/menu/extra.yml -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/data/menu/more.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/data/menu/more.yml -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/images/readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/images/readme.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/images/screenshot.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/images/tn.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/404.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/_default/_markup/render-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/_default/_markup/render-image.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/_default/baseof.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/_default/list.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/_default/single.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/content.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/foot.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/head/custom.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/head/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/head/favicons.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/head/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/head/meta.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/head/microformats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/head/microformats.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/head/others.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/head/others.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/head/prism.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/head/prism.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/head/rel-me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/head/rel-me.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/head/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/head/schema.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/menu-bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/menu-bundle.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/menu-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/menu-extra.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/menu-filetree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/menu-filetree.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/menu.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/page-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/page-footer.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/page-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/page-header.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/search.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/site-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/site-footer.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/site-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/site-header.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/svg-icon-symbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/svg-icon-symbols.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/partials/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/partials/title.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/posts/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/posts/list.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/posts/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/posts/single.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/robots.txt -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/button.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/columns.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/expand.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/hint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/hint.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/icon.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/img.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/include.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/katex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/katex.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/tabs.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/toc-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/toc-tree.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/shortcodes/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/shortcodes/toc.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/layouts/taxonomy/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/layouts/taxonomy/list.html -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/brand.svg -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/browserconfig.xml -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/favicon.ico -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/favicon.svg -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/favicon/site.webmanifest -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationMono.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationMono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationMono.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationSans.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationSans.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/LiberationSans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/LiberationSans.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/Metropolis.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/Metropolis.woff -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/fonts/Metropolis.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/fonts/Metropolis.woff2 -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/auto-render-8634ca81ec.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/auto-render-8634ca81ec.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/clipboard-27784b7376.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/clipboard-27784b7376.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/clipboard-loader-832dc83c27.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/clipboard-loader-832dc83c27.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/copycode-fd03c0d24f.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/copycode-fd03c0d24f.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/darkmode-ce906ea916.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/darkmode-ce906ea916.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/flexsearch-e54a90f706.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/flexsearch-e54a90f706.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/groupBy-700a0a22e5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/groupBy-700a0a22e5.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/katex-bfca83b6fc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/katex-bfca83b6fc.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/katex-loader-3cfedeea38.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/katex-loader-3cfedeea38.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/mermaid-beaf30d1e1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/mermaid-beaf30d1e1.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/js/mermaid-loader-1bd1515cbf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/js/mermaid-loader-1bd1515cbf.min.js -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/katex-fd1ecc245b.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/katex-fd1ecc245b.min.css -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/main-61795ecfac.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/main-61795ecfac.min.css -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/mobile-e214817c8f.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/mobile-e214817c8f.min.css -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/static/print-f79fc3e5d7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/static/print-f79fc3e5d7.min.css -------------------------------------------------------------------------------- /hugo/themes/hugo-geekdoc/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/themes/hugo-geekdoc/theme.toml -------------------------------------------------------------------------------- /hugo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/tsconfig.json -------------------------------------------------------------------------------- /hugo/vite.showcase-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/hugo/vite.showcase-worker.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/package.json -------------------------------------------------------------------------------- /scripts/check-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/scripts/check-links.ts -------------------------------------------------------------------------------- /tailwind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/tailwind/README.md -------------------------------------------------------------------------------- /tailwind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/tailwind/package.json -------------------------------------------------------------------------------- /tailwind/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/tailwind/style.css -------------------------------------------------------------------------------- /tailwind/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/tailwind/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-langium/langium-website/HEAD/tsconfig.json --------------------------------------------------------------------------------