I used LLM to format my markdown table (ಥ ͜ʖಥ)
I used LLM to format my markdown table (ಥ ͜ʖಥ)
should be the same as pebble.
It also uses an always-on transflective lcd display similar to pebble 2.
after my pebble died, I have been exclusively buying smartwatches (amazfit etc) with these type of screen only.
the display is slightly difference:
features | pebble time | banglejs |
---|---|---|
color | 6 bit (64 color) | 3 bit (8 color) |
resolution | 144x168 | 176x176 |
input method | 4 buttons | touchscreen + 1 button |
Take a look at BangleJS
Prettier doesn’t make my markdown table prettier tho. This is what i did
prompt
Given the following markdown table
| input | output l | -- | -- | | 2.6 | 3 | | 2.5 | 2 | | 2.4 | 2 | | 1.6 | 2 | | 1.5 | 2 | | 1.4 | 1 |
Align the vertical bar. Align number to the left
output
Here’s the table with the vertical bars aligned and numbers left-aligned:
| input | output l | |-------|----------| | 2.6 | 3 | | 2.5 | 2 | | 2.4 | 2 | | 1.6 | 2 | | 1.5 | 2 | | 1.4 | 1 |
Each column has been padded so that the vertical bars line up consistently, and the numbers are aligned to the left as requested.