Technical Writing

Markdown vs. WYSIWYG: Why True Writers Choose Plain Text

If you are pausing to click the bold button, you are breaking your flow. Learn why Markdown is the ultimate tool for drafting speed.

A
Akhil K Thomas
Published March 2, 2026

For decades, software like Microsoft Word defined how we write on computers. Known as WYSIWYG (What You See Is What You Get), these editors allow you to highlight a word, click a 'B' button on a toolbar, and watch the text instantly turn bold.

It sounds intuitive, but for professional writers, bloggers, and developers, WYSIWYG editors are inherently flawed. They demand constant context switching between typing and formatting. This is why the writing world has slowly defected to Markdown.

What exactly is Markdown?

Markdown is a lightweight markup language created by John Gruber in 2004. Unlike HTML's heavy tags, Markdown uses standard punctuation to format text instantly.

Instead of clicking a button to italicize a word, you simply surround it with asterisks: *like this*. To create a header, you add hashes: # Main Title. It is formatting that you can read plainly, without the distraction of a complex interface.

Why Markdown is mathematically faster

Consider the physical actions required to bold a word in a standard WYSIWYG editor like Google Docs:

  • 1. Stop typing.
  • 2. Move your hand to the mouse.
  • 3. Select the word.
  • 4. Move the cursor up to the toolbar.
  • 5. Click 'Bold'.
  • 6. Return your hands to the home row to resume writing.

In Markdown, you never move your hands. You hold down shift, type two asterisks before and after the word—**bold**—and keep going. It takes a fraction of a second. Multiplied over thousands of words across a novel or a blog, the time saved is staggering.

Future-Proofing Your Words

Perhaps the most critical advantage of Markdown is data longevity. A WYSIWYG document (like a `.docx` or a proprietary Apple Pages file) contains hidden binary code. If Word ceases to exist in 50 years, opening that file will be incredibly difficult.

Markdown files are just .md text files. They are fundamentally composed of pure alphanumeric characters. You can open them in Notepad, TextEdit, a highly advanced IDE, or a dedicated minimalist editor like Thooval. Because there is no hidden formatting data, your files are immune to obsolescence and corruption.

Getting Started with Markdown

The learning curve is famously short. Here are the basics:

# Heading 1
## Heading 2

*Italics*
**Bold**
***Bold Italics***

[Link Text](https://example.com)
> A blockquote

1. Numbered List
2. Numbered List

If you're ready to make the switch, finding an environment designed for Markdown is essential. Thooval is expressly built to render Markdown beautifully, providing an elegant split-free writing experience natively on macOS. Because when you write in plain text, the editor should be plain text, too.