Skip to content

Commit

Permalink
feat: add technical writing
Browse files Browse the repository at this point in the history
  • Loading branch information
CBID2 committed Sep 26, 2023
1 parent 46a88ce commit 62add56
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,12 @@ export const sidebarData: ISidebar[] = [
{ name: 'Roadmaps', url: '/roadmaps', resources: DB.roadmaps },
],
},
{
category: 'technical writing',
subcategory: [
{ name: 'tools', url: '/tools', resources: DB.tools },
]
},
]

export const subCategories = sidebarData.flatMap(({ category, subcategory }) =>
Expand Down
9 changes: 9 additions & 0 deletions database/technical-writing/technical-writing.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[
{
name:"Docsify",
description:"If you're looking for a static generator that makes it easier for you to create docs, you'll love Docsify. Unlike GitBook, it does not generate static HTML files. Instead, it loads and parses your Markdown files and displays them as a website.",
url:"https://docsify.js.org/#/",
category:"technical writing",
subcategory:" ",
}
]
3 changes: 3 additions & 0 deletions types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export type Category =
| 'other'
| 'devops'
| 'competitive-programming'
| 'technical writing'

export type SubCategories = {
name: string
Expand Down Expand Up @@ -160,4 +161,6 @@ export const subcategoryArray = [
'roadmaps',
// competitive programming
'platforms',
// technical writing
'tools',
]

0 comments on commit 62add56

Please sign in to comment.