mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
10 lines
341 B
Markdown
10 lines
341 B
Markdown
|
|
# Markdown Renderer
|
||
|
|
You can use `Markdown` renderer to display table as a markdown table. It can be helpful if you want to copy the results of the query to different file or just like the ASCII style.
|
||
|
|
|
||
|
|
```sqlseal
|
||
|
|
|
||
|
|
MARKDOWN
|
||
|
|
SELECT * FROM files LIMIT 10
|
||
|
|
```
|
||
|
|
|
||
|
|
Please note that functions like `img` and `a` does not work well with this renderer.
|