snipdoc 0.1.12

Code Documentation Made Simple
Documentation
```console
$ snipdoc run --dry-run
==============================
       Snipdoc 
==============================

Overall Summary:
Folder                : [CWD]

Detailed Summary by Action Type:
Equal      : 1
Injected   : 5
Not Found  : 1
Error      : 1

Snippets to inject not found:
 - README.md, snippet id: not-found-snippet-to-inject

Found errors in the following files:
 - error-parsing.rs :  --> 2:1
  |
2 | 
  | ^---
  |
  = expected comment or tag_close

Injected In Files:
 - README.md

```

```console
$ snipdoc run --dry-run --format table
┌──────────────────┬────────────────────┬─────────────────────────────┬───────────────────────────────────┐
│ Path             │ Action             │ Snippet ID                  │                                   │
├──────────────────┼────────────────────┼─────────────────────────────┼───────────────────────────────────┤
│ README.md        │ injected           │ title                       │                                   │
├──────────────────┼────────────────────┼─────────────────────────────┼───────────────────────────────────┤
│ README.md        │ injected           │ rust-print                  │                                   │
├──────────────────┼────────────────────┼─────────────────────────────┼───────────────────────────────────┤
│ README.md        │ injected           │ create-db                   │                                   │
├──────────────────┼────────────────────┼─────────────────────────────┼───────────────────────────────────┤
│ README.md        │ equal              │ inject-snippets             │                                   │
├──────────────────┼────────────────────┼─────────────────────────────┼───────────────────────────────────┤
│ README.md        │ not-found-snippets │ not-found-snippet-to-inject │ Inject from: Code                 │
├──────────────────┼────────────────────┼─────────────────────────────┼───────────────────────────────────┤
│ README.md        │ injected           │ inject-from-yaml            │                                   │
├──────────────────┼────────────────────┼─────────────────────────────┼───────────────────────────────────┤
│ README.md        │ injected           │ inject-from-yaml            │                                   │
├──────────────────┼────────────────────┼─────────────────────────────┼───────────────────────────────────┤
│ error-parsing.rs │ error              │                             │  --> 2:1                          │
│                  │                    │                             │   |                               │
│                  │                    │                             │ 2 |                               │
│                  │                    │                             │   | ^---                          │
│                  │                    │                             │   |                               │
│                  │                    │                             │   = expected comment or tag_close │
└──────────────────┴────────────────────┴─────────────────────────────┴───────────────────────────────────┘

```