A sampling of Carve constructs and how they render. Carve's inline markers differ from Markdown:
/italic/ for italic, *bold* for bold, and _underline_ for underline
(plus =highlight=, ~strikethrough~, and braced {^superscript^} /
{,subscript,}).
The gallery also covers Carve's newer and more deliberate behaviors: the inline literal
!`...`, definition lists, footnotes, smart typography (dash runs, ellipsis, quotes),
tight versus loose lists, and escaped block markers.
!`...`
Prefixing a code span with ! makes it an inline literal: the characters
appear verbatim, with no code styling and no further markup processing. Handy for showing markup
characters without them being interpreted.
A code span styles its content: `*not bold*`.
An inline literal shows the characters verbatim, with no code styling and no markup: !`*not bold*`.
A code span styles its content: *not bold*.
An inline literal shows the characters verbatim, with no code styling and no markup: *not bold*.
# Heading 1
## Heading 2
### Heading 3
/italic/
*bold*
_underline_
=highlight=
~strikethrough~
italic
bold
underline
highlight
strikethrough
Braced only: E = mc{^2^} and H{,2,}O.
Braced only: E = mc2 and H2O.
- one
- two
- nested
. first
. second
- [x] done
- [ ] todo
Tight (no blank lines):
- one
- two
Loose (blank lines between items wrap each in a paragraph):
- one
- two
Tight (no blank lines):
Loose (blank lines between items wrap each in a paragraph):
one
two
:: Carve
: A post-Markdown markup language.
:: Djot
: The project Carve refines.
> A quote
> spanning lines.
A quote spanning lines.
[Carve spec](https://github.com/markup-carve/carve)

|= Lang |= Status |
| PHP | ready |
| JS | ready |
| Lang | Status |
|---|---|
| PHP | ready |
| JS | ready |
::: note
This is a note admonition.
:::
Carve supports real footnotes.[^spec]
[^spec]: Defined once, linked and back-linked automatically.
Ranges use -- an en dash -- and asides use --- an em dash. Ellipsis... and "smart quotes" and 'single' too.
Ranges use â an en dash â and asides use â an em dash. Ellipsis⊠and âsmart quotesâ and âsingleâ too.
A paragraph.
\# This stays literal text, not a heading.
# A real heading
A paragraph.
# This stays literal text, not a heading.