(s string)
| 79 | } |
| 80 | |
| 81 | func formatMarkdown(s string) string { |
| 82 | s = reMatchNewlines.ReplaceAllString(s, "\n\n") |
| 83 | return reMatchHeaders.ReplaceAllString(s, `$1`+"\n\n") |
| 84 | } |
| 85 | |
| 86 | func indentToDepth(table *schema.Table) string { |
| 87 | s := "" |
no outgoing calls
no test coverage detected