8000 fix: Add .md extension to the docs routes by BrunoQuaresma · Pull Request #2128 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: Add .md extension to the docs routes #2128

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

Merged
merged 2 commits into from
Jun 7, 2022
Merged
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
Next Next commit
fix: Add .md extension to the docs routes
  • Loading branch information
BrunoQuaresma committed Jun 7, 2022
commit f831eae7b0fcf347d6dbf91a2fdf52e965bf15ac
84 changes: 42 additions & 42 deletions docs/manifest.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{
"versions": ["0.6.2"],
"routes": [
"versions": ["0.6.2"],
"routes": [
{
"title": "About",
"description": "About Coder",
"path": "./about.md"
},
{
"title": "Installation",
"description": "Learn how to install and deploy Coder.",
"path": "./INSTALL.md"
},
{
"title": "Templates",
"description": "Learn about templates, which define the infrastructure underlying workspaces.",
"path": "./templates.md",
"icon": ""
},
{
"title": "Workspaces",
"description": "Learn about Coder workspaces.",
"path": "./WORKSPACES.md"
},
{
"title": "Contributing",
"description": "Learn how to contribute to Coder.",
"path": "./CONTRIBUTING.md",
"children": [
{
"title": "About",
"description": "About Coder",
"path": "./about"
"title": "Code of Conduct",
"description": "See the code of conduct for contributing to Coder.",
"path": "./CODE_OF_CONDUCT.md"
},
{
"title": "Installation",
"description": "Learn how to install and deploy Coder.",
"path": "./INSTALL"
},
{
"title": "Templates",
"description": "Learn about templates, which define the infrastructure underlying workspaces.",
"path": "./templates.md",
"icon": ""
},
{
"title": "Workspaces",
"description": "Learn about Coder workspaces.",
"path": "./WORKSPACES"
},
{
"title": "Contributing",
"description": "Learn how to contribute to Coder.",
"path": "./CONTRIBUTING",
"children": [
{
"title": "Code of Conduct",
"description": "See the code of conduct for 749C contributing to Coder.",
"path": "./CODE_OF_CONDUCT"
},
{
"title": "Contributors",
"description": "See a contributors to Coder.",
"path": "./CONTRIBUTORS"
}
]
},
{
"title": "Security policy",
"description": "Learn how to report vulnerabilities in Coder.",
"path": "./SECURITY"
"title": "Contributors",
"description": "See a contributors to Coder.",
"path": "./CONTRIBUTORS.md"
}
]
]
},
{
"title": "Security policy",
"description": "Learn how to report vulnerabilities in Coder.",
"path": "./SECURITY.md"
}
]
}
0