LaTeX to Markdown

Convert LaTeX source into Markdown.

Example

LaTeX
\section{Intro}
\textbf{bold} and $x^2$.
Markdown
# Intro

**bold** and $x^2$.

What it keeps

  • \section / \subsection become headings
  • \textbf and \textit
  • itemize/enumerate lists and \href links
  • Inline and display math kept as $…$

Where it struggles

  • Custom macros and packages aren't expanded
  • figure and table environments are simplified
  • Bibliography and cross-references aren't resolved

Frequently asked questions

Does the math convert?

Math is kept as $…$ so it renders in any math-aware Markdown viewer. It isn't turned into images.

What about my custom macros?

They aren't expanded — define-your-own commands pass through as text. Stick to standard LaTeX for the cleanest result.

Is my source private?

Yes — the .tex file is parsed in your browser.