diff --git a/.gitignore b/.gitignore index 133927f15..c23b29557 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .DS_Store *.swp *.swo +.worktrees/ # Generated via update-index script public/blog/feed.xml diff --git a/src/ApiDocs.res b/app/routes/ApiDocs.res similarity index 100% rename from src/ApiDocs.res rename to app/routes/ApiDocs.res diff --git a/src/Blog.res b/app/routes/Blog.res similarity index 100% rename from src/Blog.res rename to app/routes/Blog.res diff --git a/src/BlogArticle.res b/app/routes/BlogArticle.res similarity index 100% rename from src/BlogArticle.res rename to app/routes/BlogArticle.res diff --git a/src/BlogArticle.resi b/app/routes/BlogArticle.resi similarity index 100% rename from src/BlogArticle.resi rename to app/routes/BlogArticle.resi diff --git a/src/components/LandingPage.res b/app/routes/LandingPage.res similarity index 100% rename from src/components/LandingPage.res rename to app/routes/LandingPage.res diff --git a/src/components/LandingPage.resi b/app/routes/LandingPage.resi similarity index 100% rename from src/components/LandingPage.resi rename to app/routes/LandingPage.resi diff --git a/src/Packages.res b/app/routes/Packages.res similarity index 100% rename from src/Packages.res rename to app/routes/Packages.res diff --git a/src/Packages.resi b/app/routes/Packages.resi similarity index 100% rename from src/Packages.resi rename to app/routes/Packages.resi diff --git a/src/SyntaxLookup.res b/app/routes/SyntaxLookup.res similarity index 100% rename from src/SyntaxLookup.res rename to app/routes/SyntaxLookup.res diff --git a/markdown-pages/docs/manual/llms.mdx b/markdown-pages/docs/manual/llms.mdx index 1e89e09cf..7e73b6153 100644 --- a/markdown-pages/docs/manual/llms.mdx +++ b/markdown-pages/docs/manual/llms.mdx @@ -3,7 +3,7 @@ title: "LLMs" description: "Documentation for LLMs" canonical: "/docs/manual/llms" section: "Overview" -order: 10 +order: 4 --- # Documentation for LLMs diff --git a/src/Path.res b/src/common/Path.res similarity index 100% rename from src/Path.res rename to src/common/Path.res diff --git a/src/ScrollLockContext.res b/src/common/ScrollLockContext.res similarity index 100% rename from src/ScrollLockContext.res rename to src/common/ScrollLockContext.res diff --git a/src/CommunityContent.res b/src/components/CommunityContent.res similarity index 100% rename from src/CommunityContent.res rename to src/components/CommunityContent.res diff --git a/src/common/BlogApi.res b/src/data/BlogApi.res similarity index 100% rename from src/common/BlogApi.res rename to src/data/BlogApi.res diff --git a/src/common/BlogApi.resi b/src/data/BlogApi.resi similarity index 100% rename from src/common/BlogApi.resi rename to src/data/BlogApi.resi diff --git a/src/BlogLoader.res b/src/data/BlogLoader.res similarity index 100% rename from src/BlogLoader.res rename to src/data/BlogLoader.res diff --git a/src/CommunityResources.res b/src/data/CommunityResources.res similarity index 100% rename from src/CommunityResources.res rename to src/data/CommunityResources.res diff --git a/src/common/MetaTagsApi.res b/src/data/MetaTagsApi.res similarity index 100% rename from src/common/MetaTagsApi.res rename to src/data/MetaTagsApi.res diff --git a/src/common/OurUsers.res b/src/data/OurUsers.res similarity index 100% rename from src/common/OurUsers.res rename to src/data/OurUsers.res diff --git a/src/common/BlogFrontmatter.res b/src/markdown/BlogFrontmatter.res similarity index 100% rename from src/common/BlogFrontmatter.res rename to src/markdown/BlogFrontmatter.res diff --git a/src/common/CompiledMdx.res b/src/markdown/CompiledMdx.res similarity index 100% rename from src/common/CompiledMdx.res rename to src/markdown/CompiledMdx.res diff --git a/src/common/CompiledMdx.resi b/src/markdown/CompiledMdx.resi similarity index 100% rename from src/common/CompiledMdx.resi rename to src/markdown/CompiledMdx.resi diff --git a/src/common/DocFrontmatter.res b/src/markdown/DocFrontmatter.res similarity index 100% rename from src/common/DocFrontmatter.res rename to src/markdown/DocFrontmatter.res diff --git a/src/common/DocFrontmatter.resi b/src/markdown/DocFrontmatter.resi similarity index 100% rename from src/common/DocFrontmatter.resi rename to src/markdown/DocFrontmatter.resi diff --git a/src/common/FrontmatterUtils.res b/src/markdown/FrontmatterUtils.res similarity index 100% rename from src/common/FrontmatterUtils.res rename to src/markdown/FrontmatterUtils.res diff --git a/src/common/MarkdownParser.res b/src/markdown/MarkdownParser.res similarity index 100% rename from src/common/MarkdownParser.res rename to src/markdown/MarkdownParser.res diff --git a/src/common/MarkdownParser.resi b/src/markdown/MarkdownParser.resi similarity index 100% rename from src/common/MarkdownParser.resi rename to src/markdown/MarkdownParser.resi diff --git a/src/Mdx.res b/src/markdown/Mdx.res similarity index 100% rename from src/Mdx.res rename to src/markdown/Mdx.res diff --git a/src/MdxFile.res b/src/markdown/MdxFile.res similarity index 100% rename from src/MdxFile.res rename to src/markdown/MdxFile.res diff --git a/src/MdxFile.resi b/src/markdown/MdxFile.resi similarity index 100% rename from src/MdxFile.resi rename to src/markdown/MdxFile.resi diff --git a/src/MdxLegacy.res b/src/markdown/MdxLegacy.res similarity index 100% rename from src/MdxLegacy.res rename to src/markdown/MdxLegacy.res diff --git a/src/SidebarHelpers.res b/src/markdown/SidebarHelpers.res similarity index 100% rename from src/SidebarHelpers.res rename to src/markdown/SidebarHelpers.res diff --git a/src/SidebarHelpers.resi b/src/markdown/SidebarHelpers.resi similarity index 100% rename from src/SidebarHelpers.resi rename to src/markdown/SidebarHelpers.resi diff --git a/src/TableOfContents.res b/src/markdown/TableOfContents.res similarity index 100% rename from src/TableOfContents.res rename to src/markdown/TableOfContents.res diff --git a/src/common/TocUtils.res b/src/markdown/TocUtils.res similarity index 100% rename from src/common/TocUtils.res rename to src/markdown/TocUtils.res diff --git a/src/common/CompilerManagerHook.res b/src/playground/CompilerManagerHook.res similarity index 100% rename from src/common/CompilerManagerHook.res rename to src/playground/CompilerManagerHook.res diff --git a/src/common/CompilerManagerHook.resi b/src/playground/CompilerManagerHook.resi similarity index 100% rename from src/common/CompilerManagerHook.resi rename to src/playground/CompilerManagerHook.resi diff --git a/src/ConsolePanel.res b/src/playground/ConsolePanel.res similarity index 100% rename from src/ConsolePanel.res rename to src/playground/ConsolePanel.res diff --git a/src/common/EvalIFrame.res b/src/playground/EvalIFrame.res similarity index 100% rename from src/common/EvalIFrame.res rename to src/playground/EvalIFrame.res diff --git a/src/common/LzString.res b/src/playground/LzString.res similarity index 100% rename from src/common/LzString.res rename to src/playground/LzString.res diff --git a/src/OutputPanel.res b/src/playground/OutputPanel.res similarity index 100% rename from src/OutputPanel.res rename to src/playground/OutputPanel.res diff --git a/src/Playground.res b/src/playground/Playground.res similarity index 100% rename from src/Playground.res rename to src/playground/Playground.res diff --git a/src/Playground.resi b/src/playground/Playground.resi similarity index 100% rename from src/Playground.resi rename to src/playground/Playground.resi diff --git a/src/PlaygroundLazy.res b/src/playground/PlaygroundLazy.res similarity index 100% rename from src/PlaygroundLazy.res rename to src/playground/PlaygroundLazy.res diff --git a/src/RenderPanel.res b/src/playground/RenderPanel.res similarity index 100% rename from src/RenderPanel.res rename to src/playground/RenderPanel.res diff --git a/src/RenderPanel.resi b/src/playground/RenderPanel.resi similarity index 100% rename from src/RenderPanel.resi rename to src/playground/RenderPanel.resi diff --git a/src/Shims.res b/src/shims/Shims.res similarity index 100% rename from src/Shims.res rename to src/shims/Shims.res diff --git a/src/_shims.mjs b/src/shims/_shims.mjs similarity index 100% rename from src/_shims.mjs rename to src/shims/_shims.mjs