kreendurron / BRC-Bot

A Discord Bot for The Bible Reading Challenge
1 stars 1 forks source link

Database command should display as a table. #24

Open kreendurron opened 2 years ago

kreendurron commented 2 years ago

Here's a good website that converts a basic table into markdown text: https://www.tablesgenerator.com/markdown_tables

It should look something like this. Code:

| UserID | Name         | XP   | Reading Streak | Last Check-in     |
|--------|--------------|------|----------------|-------------------|
| 1      | Admin        | 4150 | 5              | 1643650967.975411 |
| 2      | KAE          | 630  | 1              | 1642269240.583896 |
| 3      | thebrianclan | 1070 | 6              | 1643736997.047841 |
Result In Discord: UserID Name XP Reading Streak Last Check-in
1 Admin 4150 5 1643650967.975411
2 KAE 630 1 1642269240.583896
3 thebrianclan 1070 6 1643736997.047841

https://github.com/kreendurron/BRC-Bot/blob/9f1249788416b3c6a412418a056bde2f34046c27/cogs/brcAdmin.py#L52

kreendurron commented 2 years ago

Status: Work In Progress