LexpertDraft is a writing app for people who are done fighting their word processor. Your text stays plain, readable, and yours — and it still comes out as a Word file or a PDF when someone needs one.
Markdown is a handful of conventions for marking up ordinary text. A # in front of a line makes it a heading. Two asterisks around a word make it bold. A hyphen starts a bullet. That’s most of it, and you can learn the rest in five minutes — though in LexpertDraft you mostly won’t type the symbols at all, because it formats as you go.
But the symbols aren’t the point. This is the point:
# Meeting Notes Met with the client on **March 14**. - Property division - Custody schedule
Six lines. Every character on screen is a character you typed.
A .docx isn’t a document. It’s a zip archive. Open it in a text editor and you get this:
PK♦♦¶ ...M-EM-=]^HhM-:M-NM-^C^A^@^@[Content_Types].xml...
Unzip it and one of those sixteen files holds your words. Here is the single sentence “Met with the client on March 14.” as that file stores it:
<w:p><w:pPr><w:pStyle w:val="FirstParagraph" /></w:pPr><w:r><w:t xml:space="preserve">Met with the client on</w:t></w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:rPr><w:b /><w:bCs /></w:rPr><w:t xml:space="preserve">March 14</w:t></w:r><w:r><w:t xml:space="preserve">.</w:t></w:r></w:p>
Sixteen files. One of them, in part, is your sentence.
That’s one sentence. Thirty-six characters became two hundred ninety-six, chopped into four separate “runs” because three words in the middle are bold. And this is the tidy version — it came out of a converter. A file Word saved itself carries revision IDs, spell-check markers, and language tags on top of all that.
Ninety-four bytes against ten thousand seven hundred thirty. But the size isn’t the problem. The problem is that you can read one of them.
Open a Markdown file in anything — TextEdit, Notepad, your phone, an email body. There is no future in which it fails to open. A .docx needs a program that can reassemble sixteen files of XML, and when one entry in that zip goes bad, the document goes with it. You’ve seen that dialog box. There is no equivalent for a text file.
Plain text has no version number. Nothing to upgrade, nothing to migrate, nothing that quietly stops opening because you’re three releases behind or the subscription lapsed. The notes you take today open on any machine you’ll ever own, with no software standing in between.
Ask Claude or ChatGPT for a draft, then paste it somewhere that doesn’t render — you’ll see ## and **. That’s Markdown. Every major model was trained on it and emits it by default, which means writing in Markdown hands an assistant a document it reads natively: no conversion, no attachment, no structure lost on the way in. Markdown became the common language between people and machines more or less by accident. It isn’t going anywhere.
No style that won’t stop applying itself. No list that renumbers from 1 for no reason. No invisible table cell holding the margin hostage. The formatting can’t break, because there isn’t any — there’s text, and rules for displaying it.
Nobody’s asking you to change what goes to opposing counsel or the client. Write in Markdown; export whatever the other side needs.
A self-contained HTML export is one file that opens in any browser, keeps your fonts and layout, and needs no attachments folder. For anything you’d otherwise send as a PDF just to lock the formatting, it’s better.
No split screen, no preview pane, no toggling between “editing” and “seeing.” You type ## Findings and the line becomes a heading in front of you.
The document you’re editing is the document. Type **bold** and it snaps bold; the asterisks step out of the way.
Drop in text from a website, an email, a PDF — it comes in as clean Markdown instead of dragging six fonts and a background color with it.
One keystroke shows the plain text underneath. It’s yours; nothing is hidden from you.
Reference footnotes that renumber themselves when you move things around. Click one to jump to it and back.
Build them visually — no dragging cell borders, no table that eats the page.
Everything but the line you’re writing fades back. The line stays centered.
Light and dark, plus a shelf of built-in looks. Every one is plain CSS, so any of them can be changed.
Drag one in. It’s stored beside your document, not swallowed by it.
Across the document, with the whole file in front of you.
Also handles math (LaTeX), diagrams, code blocks, and YAML front matter — if none of that means anything to you, it never has to.
One download. No account, no subscription, nothing to cancel. It runs on your computer, and your documents stay there.