Skip to content

Commit

Permalink
[en] add page placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosemoe committed Feb 17, 2024
1 parent 6e39254 commit 07bd2ce
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docs/.vitepress/config/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,39 @@ function guideReference(): DefaultTheme.SidebarItem[] {
{ text: 'Color Scheme', link: 'using-color-scheme' },
{ text: 'Events and Components', link: 'events-and-components' }
]
},
{
text: 'Advanced',
collapsed: false,
items: [
{ text: 'Language Server Protocol', link: 'using-lsp' },
{ text: 'Custom Component', link: 'custom-component' },
{
text: 'Custom Language',
collapsed: true,
items: [
{ text: 'Language Basics', link: 'custom-language/basics' },
{ text: 'Syntax Analysis', link: 'custom-language/syntax-analysis' },
{ text: 'Auto Completion', link: 'custom-language/auto-completion' },
{ text: 'Diagnostics', link: 'custom-language/diagnostics' },
{ text: 'Code Format', link: 'custom-language/code-format' },
// { text: 'Inlay Hint', link: 'custom-language/inlay-hint' },
{ text: 'Minor Features', link: 'custom-language/minor-features' }
]
}
]
},
{
text: 'API Reference',
link: '../reference/xml-attributes'
}
]
}

function sidebarReference(): DefaultTheme.SidebarItem[] {
return [
{
text: 'Reference',
items: [
{ text: 'XML Attributes', link: 'xml-attributes' },
{ text: 'Keybindings', link: 'keybindings' }
Expand Down
1 change: 1 addition & 0 deletions docs/guide/custom-component.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Custom Component
1 change: 1 addition & 0 deletions docs/guide/custom-language/auto-completion.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Auto Completion for Language
1 change: 1 addition & 0 deletions docs/guide/custom-language/basics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Custom Language Basics
1 change: 1 addition & 0 deletions docs/guide/custom-language/code-format.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Code Format for Language
1 change: 1 addition & 0 deletions docs/guide/custom-language/diagnostics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Language Diagnostics
1 change: 1 addition & 0 deletions docs/guide/custom-language/inlay-hint.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Inlay Hint
1 change: 1 addition & 0 deletions docs/guide/custom-language/minor-features.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Other Minor Features for Language
1 change: 1 addition & 0 deletions docs/guide/custom-language/syntax-analysis.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Language Syntax Anslysis
1 change: 1 addition & 0 deletions docs/guide/using-lsp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Language Server Protocol

0 comments on commit 07bd2ce

Please # to comment.