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)
}