Tables in pure Markdown

Just brainstorming:

| title: The Title | name: The Name | ph: The Phone | ← this introduces a table and row names
---------- ← this introduces a new row
title: value1
name: value2
ph: value3
---------- ← another row

| ← indicates the end of the table

  • Still easy to read because you have column key in front of each value
  • No matter in which order cells are desrcribed (looks more like a JSON object)
  • Easy to maintain by using keys title, name, ph, so you can still easily add / remove columns
2 Likes