Why Markdown?
Formatting slows you down. In Word or HTML, you eventually spend your time on appearance instead of content.
Simplicity
A # makes a heading. Two asterisks make bold text. That is all you need to write structured text without lifting your hands from the keyboard.
Semantics
A heading in Markdown is a statement about structure — not just a typographic choice. # Chapter 1 means: everything that follows belongs to this chapter, until the next heading of the same level appears. HTML offers the same possibility in theory, but in practice headings are often written as <p class="header bold"> because the designer wants control over appearance. The semantics disappear, but the eye notices nothing.
The problem arises when something other than an eye reads the text. A screen reader, a search engine, an AI agent — they rely on structure, not style. Markdown makes that distinction impossible to miss: # is a heading, always.
That is why we chose Markdown in Spote.
#markdown #semantics #formatting