using DataFrames, PrettyTables
x = [1,2,3,4,5]
y = [6,7,8,9, 10]
df = DataFrame("x" => x, "y" => y)
pretty_table(df, tf=tf_markdown)
|     x |     y |
| Int64 | Int64 |
|-------|-------|
|     1 |     6 |
|     2 |     7 |
|     3 |     8 |
|     4 |     9 |
|     5 |    10 |