Files
9TailedKitsune/wiki/9tK-Comments.md
Unstable Kitsune af495bd3bf refactor: moves documentation files to wiki folder
Organizes related documentation into a dedicated wiki directory for better project structure.
2025-09-05 04:10:51 -04:00

51 lines
1.1 KiB
Markdown

9tK-Comments.md
9tailedKitsune comes with 3 types of comments that will found through out.
All comment types will have a __**Hashtag**__ followed by another unique symbol at the beginning,
Each comment type has its own color, making it easier to tell which comment is which.
The 3 types of comments are as follows...
## Comment Index
- **Major Issues**,
- Color: RED
-# For Major System Breaking Issues & Comments.
- Open: `.#`
- Close: `#.`
- **Minor Issues**(y),
- Color: YELLOW
-# For Minor System Non Breaking Issues & Comments.
- Open: `#?`
- Close: `?#`
- **Green Light**(g)
- Color: Green
-# For Mostly Informational Needs or No issues
- Open: `#+`
- Close: `+#`
## Usage Example
### Major Issues -or- Comments
```
.# Comment test #.
.# this is an example #.
.# of how to use Minor #.
.# comments in 9tK! #.
```
### Minor Issues -or- Comments
```
#?
Comment test
this is
an example
of how to
use Minor
comments
in 9tK!
?#
```
### Non Issue -or- Comments
```
#+ Comment test +#
#+ this is an example +#
#+ of how to use Minor +#
#+ comments in 9tK! +#
```