1001Ferramentas
🔤 Converters

Markdown → AsciiDoc

Basic Markdown to AsciiDoc converter: headings (== ===), lists, inline code, code blocks --- and emphasis _italic_ *bold*.

AsciiDoc:

Markdown to AsciiDoc

AsciiDoc sits between Markdown and DocBook: it stays comfortable to read as plain text while carrying features Markdown lacks out of the box — file includes, attributes, cross-references, admonitions. It is the standard documentation format at Red Hat, at Spring and across much of the Java ecosystem, which makes this conversion a frequent step in project migrations.

Paste the Markdown and receive AsciiDoc. Headings swap the hash for an equals sign, keeping the level count; a hyphen list becomes an asterisk list; bold goes from double asterisk to single and italic from single asterisk to underscore, which is the inversion that most confuses people moving between the two; links reverse their order, with the address coming before the bracketed text; and a fenced code block becomes the four-hyphen delimiter.

The conversion is line by line, so it covers the body of a README well and leaves out anything depending on structure: tables, footnotes and nested blocks. It is worth checking the result when the source contains a stray asterisk mid-sentence — the emphasis swap runs on regular expressions, and a literal asterisk can be mistaken for markup.

Frequently asked questions

Why do bold and italic swap symbols?
Because the two languages picked opposite conventions. In Markdown one asterisk is italic and two are bold. In AsciiDoc one asterisk is bold and the underscore is italic. That is the difference that turns a whole document bold when someone pastes Markdown into an .adoc file without converting.
Is AsciiDoc worth it over Markdown?
It depends on scale. For a README or a project page, Markdown does the job and is better known. For a long manual with chapters in separate files, automatic numbering, cross-references and PDF output, AsciiDoc handles it without extensions while Markdown needs tooling around it.
Does GitHub render AsciiDoc?
It does: .adoc files show up formatted in the interface, README included. Support is not complete — file includes, for instance, are not resolved — but the essentials of formatting are displayed.

Related Tools