https://github.com/moodrain/xizhi-table
send json array and get table markdown in xizhi notification app
https://github.com/moodrain/xizhi-table
Last synced: 3 months ago
JSON representation
send json array and get table markdown in xizhi notification app
- Host: GitHub
- URL: https://github.com/moodrain/xizhi-table
- Owner: moodrain
- Created: 2021-05-19T10:06:57.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-20T02:01:07.000Z (about 4 years ago)
- Last Synced: 2025-01-13T18:18:16.708Z (5 months ago)
- Language: PHP
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# xizhi-table
send json array and get table markdown in xizhi notification app``?type=table&content={"A": 1, "B": 2, "C": 3}``
| A | 1 |
| - | - |
| B | 2 |
| C | 3 |``?type=table&content=[[1,2,3],[4,5,6],[7,8,9]]``
| 1 | 2 | 3 |
| - | - | - |
| 4 | 5 | 6 |
| 7 | 8 | 9 |``?type=table&content=[{"A":1,"B":11},{"A":2,"B":12},{"A":3,"B":13}]``
| A | B |
| - | - |
| 1 | 11 |
| 2 | 12 |
| 3 | 13 |