-
Notifications
You must be signed in to change notification settings - Fork 23
Closed
Description
Is your feature request related to a problem? Please describe.
- Titles and category names need to be added.
Describe the solution you'd like
- Category and channel names found in our Discord Server will be migrated to Source Pocket.
- Customize the titles.
Categories
- Programming Languages
- Web Development
- Development Tools
- Operating Systems
- Graphic Design
- Mobile Development
- Embedded Systems
- Databases
- Data Science
- Artificial Intelligence
- Game Development
- Network Programming
Add title checklist ✅
- Create a folder named as
category-name
under/docs
.
For example: Programming Languages ->
programming-languages
- Find channels found under the specific category you selected from our Discord Server.
- Create them under
/docs/category-name
path aschannel-title.md
. - Fill inside of them as the example below:
---
id: visual-studio-code <!-- id of page -->
title: Visual Studio Code <!-- title written at the top of page -->
sidebar_label: Visual Studio Code <!-- label for the sidebar -->
---
## Visual Studio Code <!-- content -->
- Find
sidebars.js
file and add your category as an object. For example:
module.exports = {
"🤔 Operating Systems Pocket": [ /* [emoji] Title from Discord Pocket */
"operating-systems/macos", /* your-category-folder/id-of-title */
"operating-systems/windows",
"operating-systems/gnu-linux",
]
⚠️ This Part is not needed for sub-titles! ⚠️
- Open
docusaurus.config.js
file, findfooter
property ofthemeConfig
. - Under the
links
property, add anitem
underitems
list as below:
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
label: "Programming Languages Pocket", /* Category Name */
to: "docs/programming-languages/assembly", /* slug of first title in your category */
},
/* Some other code */
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request