Skip to content

feature request rework user navigation to be more clearer #1839

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 17 additions & 39 deletions packages/docs/docs/.vuepress/nav/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,53 +4,31 @@ module.exports = [
link: "/guide/"
},
{
text: "Config Reference",
link: "/config/"
},
{
text: "Plugin",
link: "/plugin/"
},
{
text: "Theme",
link: "/theme/"
text: "Plugins / Themes",
link: "/market/"
},
{
text: "Learn More",
items: [
{
text: "API",
items: [
{
text: "CLI",
link: "/api/cli.html"
},
{
text: "Node",
link: "/api/node.html"
}
]
text: "Config reference",
link: "/config/index.html"
},
{
text: "Api",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we be specific here that it is the CLI API?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not really actually i didnt do a lot of stuff i wanted first to present the idea behind

link: "/api/cli.html"
},
{
text: "Create a plugin",
link: "/plugin/index.html"
},
{
text: "Create a theme",
link: "/theme/index.html"
},
{
text: "Contributing Guide",
items: [
{
text: "Local Development",
link: "/miscellaneous/local-development.html"
},
{
text: "Design Concepts",
link: "/miscellaneous/design-concepts.html"
},
{
text: "FAQ",
link: "/faq/"
},
{
text: "Glossary",
link: "/miscellaneous/glossary.html"
}
]
link: "/miscellaneous/local-development.html"
},
{
text: "Miscellaneous",
Expand Down
3 changes: 3 additions & 0 deletions packages/docs/docs/market/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# coming

<Bit />
2 changes: 2 additions & 0 deletions packages/docs/docs/plugin/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Plugin

<Bit />

Plugins generally add global-level functionality to VuePress. There is no strictly defined scope for a plugin - there are typically several types of plugins:

1. Extend the page’s metadata generated at compile time. For example [@vuepress/plugin-last-updated](./official/plugin-last-updated.md);
Expand Down