From 62add56d9e5fac7dab72aa7f8815ecae5c7c94b4 Mon Sep 17 00:00:00 2001 From: Christine Date: Tue, 26 Sep 2023 20:29:12 +0000 Subject: [PATCH] feat: add technical writing --- database/data.ts | 6 ++++++ database/technical-writing/technical-writing.json | 9 +++++++++ types/index.ts | 3 +++ 3 files changed, 18 insertions(+) create mode 100644 database/technical-writing/technical-writing.json diff --git a/database/data.ts b/database/data.ts index a4201938a..ee03dd30d 100644 --- a/database/data.ts +++ b/database/data.ts @@ -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 }) => diff --git a/database/technical-writing/technical-writing.json b/database/technical-writing/technical-writing.json new file mode 100644 index 000000000..fe9ab5f2e --- /dev/null +++ b/database/technical-writing/technical-writing.json @@ -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:" ", + } +] \ No newline at end of file diff --git a/types/index.ts b/types/index.ts index cff48462f..b36fdae14 100644 --- a/types/index.ts +++ b/types/index.ts @@ -45,6 +45,7 @@ export type Category = | 'other' | 'devops' | 'competitive-programming' + | 'technical writing' export type SubCategories = { name: string @@ -160,4 +161,6 @@ export const subcategoryArray = [ 'roadmaps', // competitive programming 'platforms', + // technical writing + 'tools', ]