● Markdown, woven into your Drive

Write it once.Own it forever.

A markdown workspace where the files are yours — stored in your Google Drive, shared with real Drive permissions, downloadable anytime.

or open the playground →

drive.file scope · a repo you choose — never everything

Storage

Your Drive is the database

Every file lives in your own Google Drive. Markloom never keeps a copy — delete the app, keep your files.

Privacy

Scoped to its own files

Built on the drive.file scope: Markloom can only touch files it created. The rest of your Drive is invisible to it.

Sharing

Real Drive permissions

Share to any email as viewer or editor. Recipients get Google's own notification — no new accounts, no lock-in.

● No account needed

Not ready to sign in?The editor works anyway.

Open the playground and start typing — or drop in a markdown file from your computer. Edit with the full toolkit, download the result. Your draft never touches our servers: it lives in your browser until you say otherwise.

Open the playground →

free · instant · private

🧶trip-plan.md
# Trip plan

- [x] Book flights
- [ ] Reserve hotel

**Budget:** $1,400

Trip plan

☑ Book flights

☐ Reserve hotel

Budget: $1,400

Upload

Bring your own file

Drop in any .md or .txt from your computer — it opens instantly, name and all.

Private

Drafts stay in your browser

Everything happens locally. No servers, no tracking, no account — refresh-proof.

Graduate

One click to Drive

When it's worth keeping, sign in once and the draft files itself in your Drive, name intact.

● Reference

Everything you can write.The markdown cheatsheet.

Headings

  • # Heading 1
    Heading 1
  • ## Heading 2
    Heading 2
  • ### Heading 3
    Heading 3
  • ###### Heading 6
    Heading 6
  • Heading 1
    =========
    Heading 1 (alternate)
  • Heading 2
    ---------
    Heading 2 (alternate)

Emphasis

  • **bold**
    bold
  • *italic*  or  _italic_
    italic
  • ***bold italic***
    bold italic
  • ~~strikethrough~~
    strikethrough
  • `inline code`
    inline code
  • \*not italic\*
    *not italic* — \ escapes symbols
  • x<sub>2</sub>  x<sup>2</sup>
    x2 x2 (HTML passes through)

Lists

  • - item
    * item
    + item
    • item — all three markers work
  • 1. first
    2. second
    1. first 2. second
  • - parent
        - nested
    • parent
    ◦ nested — indent 4 spaces
  • 5. starts at five
    5. starts at five
  • - [ ] to do
    - [x] done
    ☐ to do
    ☑ done

Links & images

  • [title](https://url)
    title
  • [title](url "tooltip")
    title — shows tooltip on hover
  • <https://example.com>
    https://example.com
  • [text][ref]
    [ref]: https://url
    reference link
  • [jump](#some-heading)
    jump to a heading
  • ![alt text](image.png)
    🖼 image
  • [![alt](img.png)](url)
    🖼 clickable image

Code blocks

Add a language after the opening fence for syntax highlighting.

```js
const greet = (name) =>
  `Hello, ${name}!`;
```
const greet = (name) =>
  `Hello, ${name}!`;

Blockquotes

Quotes can nest and contain any other markdown.

> A quote.
>
> > Nested quote.
>
> - list inside
> - **bold** inside

A quote.

Nested quote.

• list inside
bold inside

Tables

Colons in the divider row set alignment — :-- left, :-: center, --: right.

| Name  | Qty | Price |
| :---- | :-: | ----: |
| Apple |  3  | $1.20 |
| Pear  | 12  | $0.80 |
NameQtyPrice
Apple3$1.20
Pear12$0.80

Breaks, rules & footnotes

End a line with two spaces (or a backslash) for a line break; a blank line starts a new paragraph.

line one··   ← two spaces
line two

---   ← horizontal rule

A claim.[^1]

[^1]: The source.

line one
line two


A claim.1

1. The source.

Markloom renders GitHub-flavored markdown (GFM) — everything above works in the editor preview.