Added additional todo item
This commit is contained in:
parent
715a868281
commit
2be93c6c58
|
@ -22,6 +22,7 @@ todo-to-doc
|
||||||
|
|
||||||
## Sample Output
|
## Sample Output
|
||||||
|
|
||||||
|
...
|
||||||
- 📁 params<br/>
|
- 📁 params<br/>
|
||||||
- 📃 config.go<br/>
|
- 📃 config.go<br/>
|
||||||
- ⬜ Todo:<br/>
|
- ⬜ Todo:<br/>
|
||||||
|
@ -41,4 +42,6 @@ todo-to-doc
|
||||||
*Description* : TODO(adam): investigate if it's worth to keep the peer in the queue<br/>
|
*Description* : TODO(adam): investigate if it's worth to keep the peer in the queue<br/>
|
||||||
until the server confirms it is added and in the meanwhile only adjust its priority.<br/>
|
until the server confirms it is added and in the meanwhile only adjust its priority.<br/>
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
For a full sample output [see here](sample/sample.md)
|
For a full sample output [see here](sample/sample.md)
|
||||||
|
|
4
main.go
4
main.go
|
@ -2,6 +2,8 @@ package main
|
||||||
|
|
||||||
import "fmt"
|
import "fmt"
|
||||||
|
|
||||||
|
// TODO add support for `status-react`
|
||||||
|
|
||||||
// TODO implement dynamic comment token selection, could maybe work similar to entityTracker{}
|
// TODO implement dynamic comment token selection, could maybe work similar to entityTracker{}
|
||||||
|
|
||||||
// TODO check if to-do is just above a function or struct, if so assume the to-do is about the function
|
// TODO check if to-do is just above a function or struct, if so assume the to-do is about the function
|
||||||
|
@ -26,5 +28,5 @@ func main() {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println(tf.foundTree.Markdown())
|
fmt.Println(tf.foundTree)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue