add header separator

This commit is contained in:
Aaron Bieber 2020-02-11 07:58:48 -07:00
parent 27f4a7e6e2
commit 6ffd3f220c
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@
|Plugin Name|Match|Description|
|----|---|---|
|Beer|`(?i)^beer: `|Queries [OpenDataSoft](https://public-us.opendatasoft.com/explore/dataset/open-beer-database/table/)'s beer database for a given beer.|
|BotSnack|`(?i)botsnack`|Consumes a botsnack. This pleases mcchunkie and brings balance to the universe.|
|HighFive|`o/|\o`|Everyone loves highfives.|

View File

@ -48,6 +48,7 @@ func main() {
if doc {
fmt.Println("|Plugin Name|Match|Description|")
fmt.Println("|----|---|---|")
for _, p := range plugins.Plugs {
fmt.Printf("|%s|`%s`|%s|\n", p.Name(), p.Re(), p.Descr())
}