The ability to add sections to group together functions.
For example if a script looks like:
# @section Section A
# @description a
# a
# @description func a
# line a 2
a() {
}
# @section Section B
# @description b
# @description func b
# ab
b() {
}
the generated md file would look like:
## Section A
a
a
### a
func a
line a 2
## Section B
b
### b
func b
ab
The ability to add sections to group together functions.
For example if a script looks like:
the generated md file would look like: