Skip to content
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

🚧 Adding New Titles 🚧 #14

Closed
12 of 19 tasks
damla opened this issue Dec 7, 2020 · 0 comments · Fixed by #23, #30, #31, #34 or #38
Closed
12 of 19 tasks

🚧 Adding New Titles 🚧 #14

damla opened this issue Dec 7, 2020 · 0 comments · Fixed by #23, #30, #31, #34 or #38
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@damla
Copy link
Member

damla commented Dec 7, 2020

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 as channel-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, find footer property of themeConfig.
  • Under the links property, add an item under items 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 */

⚠️ Don't forget to add #issue-number in your commits! (#14 for this issue)

@damla damla changed the title 🚧 **Migration of Titles** 🚧 🚧 Migration of Titles 🚧 Dec 7, 2020
@damla damla added this to the v1.0.0 milestone Dec 7, 2020
@damla damla added the enhancement New feature or request label Dec 7, 2020
@damla damla assigned TheYkk and mrabdullahsahin and unassigned TheYkk Dec 7, 2020
@damla damla linked a pull request Dec 8, 2020 that will close this issue
11 tasks
@damla damla linked a pull request Dec 9, 2020 that will close this issue
11 tasks
@damla damla linked a pull request Dec 9, 2020 that will close this issue
11 tasks
@damla damla linked a pull request Dec 10, 2020 that will close this issue
11 tasks
@damla damla closed this as completed in #34 Dec 10, 2020
@damla damla reopened this Dec 10, 2020
@damla damla linked a pull request Dec 12, 2020 that will close this issue
11 tasks
damla added a commit that referenced this issue Dec 12, 2020
damla added a commit that referenced this issue Dec 12, 2020
damla added a commit that referenced this issue Dec 13, 2020
damla added a commit that referenced this issue Dec 13, 2020
[#14] feat: beginner, intermediate and advanced subtitles added
@damla damla closed this as completed Jan 17, 2021
@damla damla linked a pull request Jan 17, 2021 that will close this issue
11 tasks
@damla damla mentioned this issue Feb 22, 2021
8 tasks
@damla damla changed the title 🚧 Migration of Titles 🚧 🚧 Adding New Titles 🚧 Feb 23, 2021
This was linked to pull requests Feb 23, 2021
@damla damla pinned this issue Mar 7, 2021
This was referenced Mar 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment