-
Notifications
You must be signed in to change notification settings - Fork 174
Creating Editing top categories
Brady Stroud [SSW] edited this page Mar 18, 2021
·
8 revisions
If you think rules could have a new top-category, follow these steps:
- Open the GitHub SSW.Rules.Content repo and open the 'categories' folder
- Click
Add file
|Create new file
- Name your file '{top-category name}/index.md' (e.g, 'software-development/index.md')
- Edit the index.md file, you need to add the following fields in the frontmatter
- type: value must be set to 'top-category'
- title: the title of the top-category, this will be display on the home page (e.g Software Development)
- uri: the URI for the new category (e.g. software-development)
- index: A markdown list of categories URI composing the top-category
---
type: top-category
title: Software Development
uri: software-development
index:
- rules-to-better-net-projects
- rules-to-better-architecture-and-code-review
- rules-to-better-azure
- rules-to-better-devops
- rules-to-better-mvc
- rules-to-better-bots
- rules-to-better-clean-architecture
- rules-to-better-bug-management-and-feedback
- rules-to-better-user-acceptance-tests-uat-for-bug-management
- rules-to-better-crm-for-developers
- rules-to-better-power-platform
- rules-to-better-sharepoint-for-developers
- rules-to-better-code-commenting
---
Figure: Frontmatter example for a top-category
To edit a top-category, follow these steps:
- Open the GitHub SSW.Rules.Content repo
- Open the folder 'categories', then the folder with the top-category name
- Open the 'index.md' file
- Click on the pencil
- Make the changes you want
- Save your change, see Saving rules