From 2be93c6c58ae0149d96913dddccef58f4b092a55 Mon Sep 17 00:00:00 2001 From: Samuel Hawksby-Robinson Date: Fri, 5 Mar 2021 15:21:01 +0000 Subject: [PATCH] Added additional todo item --- README.md | 3 +++ main.go | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a343ad2..e87034c 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ todo-to-doc ## Sample Output +... - 📁 params
- 📃 config.go
- ⬜ Todo:
@@ -41,4 +42,6 @@ todo-to-doc *Description* : TODO(adam): investigate if it's worth to keep the peer in the queue
until the server confirms it is added and in the meanwhile only adjust its priority.
+... + For a full sample output [see here](sample/sample.md) diff --git a/main.go b/main.go index 21e3990..5529c15 100644 --- a/main.go +++ b/main.go @@ -2,6 +2,8 @@ package main import "fmt" +// TODO add support for `status-react` + // 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 @@ -26,5 +28,5 @@ func main() { panic(err) } - fmt.Println(tf.foundTree.Markdown()) + fmt.Println(tf.foundTree) }