Adds introduction to folder structures, keywords, comments, numbers, operators, and delimiters Includes detailed comment syntax and usage examples for various types Introduces logging documentation framework
51 lines
1.1 KiB
Markdown
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! +#
|
|
``` |