boxtool.io
Text··5 min read

The Formatting You Never Asked For

You just want the words down, but the app keeps making formatting decisions you never asked for. Here is why writers keep drifting back to plain text — and how a few small symbols give you structure without the fight.

The Formatting You Never Asked For

You sit down to write something that has been forming in your head all morning, and for about thirty seconds it goes beautifully. Then you press return to start a list, and the app decides your next line should be a bullet — indented, styled, and nested a level deeper than you wanted. You fix it. You paste a sentence from a note somewhere and it arrives wearing a different font and a grey highlight you cannot get rid of. You reach for the mouse to clean up the mess, and by the time the paragraph looks right again, the thought you were chasing has quietly wandered off. The words were never the hard part. The formatting was.

The tool was supposed to help you write

Most writing software is built around the finished document — the fonts, the margins, the headings that sit just so. That is a reasonable thing to design for, right up until it collides with the act of writing itself. Every time the app makes a formatting decision on your behalf, it pulls a sliver of attention away from the sentence and toward the screen. Individually the interruptions are tiny: a bullet that auto-formats, a heading that inherits the wrong style, a web address that turns blue and underlined the instant you finish typing it. Together they add up to a low, constant tax on concentration, paid in the one currency writing can least afford — focus.

The strange part is that while you are drafting, you do not need any of it. You do not care what typeface the heading uses; you care that it is a heading. You are not choosing a bullet style; you just want a list. Visual formatting is a decision for later, and forcing it into the moment of composition is like being asked to choose the picture frame before you have finished the painting.

What writing in plain text gives back

Ad

This is why a certain kind of writer — programmers, note-takers, bloggers, researchers — keeps drifting back to plain text. Not a word processor pretending to be simple, but genuine plain text: just characters, no hidden styling, nothing to fight. It is the calmest surface there is to write on. Nothing reflows, nothing restyles, nothing jumps. The old catch was that plain text could not express structure — no headings, no bold, no lists — so anything that needed shape had to end up back in a formatting-heavy editor eventually. Markdown is the small, clever fix for precisely that.

How Markdown works, in about a minute

Markdown is a set of lightweight conventions for writing structure using ordinary characters you were going to type anyway. You do not open menus or hunt for buttons; you signal what you mean with a symbol, and the text stays completely readable as you go. The heart of it fits on a postcard:

  • A line that starts with # is a heading — one # for the biggest, more of them for smaller subheadings.
  • Wrapping a word in single *asterisks* makes it italic; doubling them makes it bold.
  • Beginning lines with a dash or a number gives you bulleted or numbered lists, with none of the auto-indent surprises.
  • A word or phrase in square brackets followed by an address turns into a link, without your hands ever leaving the keyboard.
  • A line that opens with a > becomes a quote, and text between backticks is treated as code.

That is most of it. Because none of these marks hide the words, a Markdown document is perfectly legible on its own — you can read it in any text editor, on any device, with nothing installed. And when you do want the polished version, it converts cleanly into HTML: the # becomes a real heading, the asterisks become emphasis, the list becomes a proper list, ready for the web or anywhere else HTML is welcome.

Where the plain-text habit pays off

Once writing and formatting are pulled apart, a surprising number of everyday tasks get lighter:

  • The note-taker who wants to capture a thought instantly, with headings and lists intact, without a toolbar breaking their stride.
  • The blogger drafting a post who needs clean HTML at the end, not a tangle of inline styles pasted out of a word processor.
  • The developer writing a project’s README or documentation, where plain text lives happily right next to the code.
  • The student assembling research notes that have to stay searchable, quotable, and easy to reorganise months later.
  • Anyone who has pasted from a document into a website’s editor and then spent longer stripping out rogue formatting than they spent writing.

Your words outlive the app that made them

There is a quieter, longer-term reason the habit sticks: durability. A document saved in a proprietary format is only ever as available as the program that opens it — and programs change hands, get discontinued, or lock your own work behind a subscription. Plain text carries no such dependency. A Markdown file you write today will open, unchanged and fully readable, in any text editor decades from now, on hardware that does not exist yet. It is future-proof in a way almost nothing else on your computer manages to be. It also gets along with version control and plain backups, because it is just text — small, easy to compare line by line, and impossible to corrupt into an unopenable blob.

Write now without friction, keep it readable forever: that combination is why the format has quietly become the default for so much of the writing meant to last.

Writing first, formatting when you are ready

The real appeal is about sequence. You write in plain, unbothered text, getting the words down while they are still warm, and you handle presentation as a separate, later step — turning the Markdown into clean HTML with a live preview only when you actually want to see the finished shape. Doing that conversion right in the browser means the draft never has to leave your device to become a formatted page. The point was never the symbols or the syntax; it is that writing stops being a wrestling match. The next time a thought is taking shape and you reach for somewhere to put it, the tool can finally step aside and simply let you write.

Ad

Tools mentioned in this guide

Keep reading