-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanagementSidebars.ts
More file actions
159 lines (148 loc) · 5.74 KB
/
managementSidebars.ts
File metadata and controls
159 lines (148 loc) · 5.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**
* Copyright (c) Ajay Dhangar
*
* This file defines the sidebar configuration for the CodeHarborHub Tutorials Docs.
* Each category represents a tutorial topic like HTML, CSS, JavaScript, React, Git, GitHub, and Cybersecurity.
*
* Licensed under the MIT License.
*/
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
tutorial: [
"index",
// Technical Writer
{
type: "link",
label: "Technical Writer",
href: "/management/technical-writer/",
},
],
technicalwriter: [
"technical-writer/index",
{
type: "category",
label: "Introduction to Technical Writing",
link: {
type: "generated-index",
title: "Introduction to Technical Writing",
description:
"Get started with the essentials of technical writing — understand what it is, its importance, types, and the core skills required to become a successful technical writer.",
},
items: [
"technical-writer/intro/what-is-technical-writing",
"technical-writer/intro/types-of-technical-writing",
"technical-writer/intro/tools-for-technical-writers",
"technical-writer/intro/best-practices",
"technical-writer/intro/skills-required",
],
},
{
type: "category",
label: "Writing Fundamentals",
link: {
type: "generated-index",
title: "Writing Fundamentals for Technical Writers",
description:
"Master the foundations of effective writing. Learn to identify your audience, craft clear and concise content, and structure your documentation for maximum readability.",
},
items: [
"technical-writer/fundamentals/understanding-your-audience",
"technical-writer/fundamentals/writing-style-and-tone",
"technical-writer/fundamentals/document-structure-and-formatting",
"technical-writer/fundamentals/visual-aids-and-graphics",
"technical-writer/fundamentals/review-and-editing",
],
},
{
type: "category",
label: "Documentation Types",
link: {
type: "generated-index",
title: "Documentation Types & Structures",
description:
"Explore the different types of technical documentation — from API references to user guides, release notes, and product manuals. Learn how to plan, structure, and maintain each effectively.",
},
items: [
"technical-writer/documentation/api-documentation",
"technical-writer/documentation/software-documentation",
"technical-writer/documentation/user-manuals",
"technical-writer/documentation/technical-reports",
"technical-writer/documentation/release-notes",
],
},
{
type: "category",
label: "Tools & Platforms",
link: {
type: "generated-index",
title: "Documentation Tools and Platforms",
description:
"Discover essential tools and platforms every technical writer should know. From Markdown editors to documentation frameworks and version control systems, this section helps you work efficiently and collaboratively.",
},
items: [
"technical-writer/tools/markdown-basics",
"technical-writer/tools/docs-platforms",
"technical-writer/tools/version-control-github",
"technical-writer/tools/writing-tools",
"technical-writer/tools/style-guides",
],
},
{
type: "category",
label: "Advanced Topics",
link: {
type: "generated-index",
title: "Advanced Technical Writing Concepts",
description:
"Go beyond the basics and explore advanced topics like writing for developers, accessibility, localization, SEO for docs, and contributing to open source projects.",
},
items: [
"technical-writer/advanced/writing-for-developers",
"technical-writer/advanced/localization-and-accessibility",
"technical-writer/advanced/seo-for-documentation",
"technical-writer/advanced/open-source-contributions",
"technical-writer/advanced/technical-writing-career-path",
],
},
{
type: "category",
label: "Resources & Portfolio",
link: {
type: "generated-index",
title: "Resources and Career Growth",
description:
"Access curated resources, communities, and templates to improve your writing. Learn how to build an impressive portfolio, find freelance opportunities, and advance in your technical writing career.",
},
items: [
"technical-writer/resources/books-and-courses",
"technical-writer/resources/communities-and-blogs",
"technical-writer/resources/templates-and-samples",
"technical-writer/resources/portfolio-building",
],
},
// {
// type: "category",
// label: "Projects & Practice",
// link: {
// type: "generated-index",
// title: "Hands-on Projects for Technical Writers",
// description:
// "Put your learning into practice with real-world documentation projects. Learn to create sample API docs, improve open-source documentation, and build your own docs site using Docusaurus or MkDocs.",
// },
// items: [
// "technical-writer/projects/create-sample-api-docs",
// "technical-writer/projects/write-readme-for-open-source",
// "technical-writer/projects/build-docs-site-with-docusaurus",
// "technical-writer/projects/edit-existing-docs",
// "technical-writer/projects/document-a-demo-project",
// ],
// },
// {
// type: "category",
// label: "Roadmap",
// link: { type: "doc", id: "technical-writer/roadmap" },
// items: [],
// },
],
};
export default sidebars;