cabo / kramdown-rfc

An XML2RFC (RFC799x) backend for Thomas Leitner's kramdown markdown parser
MIT License
195 stars 83 forks source link

blockquote #156

Closed mnot closed 2 years ago

mnot commented 2 years ago

Right now, quoted sections are converted to XML lists. This seems odd to me -- why not <blockquote>?

cabo commented 2 years ago

Backwards compatibility (there was no <blockquote in v2).

Use

{:quote}
> The future is already here, it is just not evenly distributed.

Similar for an aside:

{:aside}
> The correct unit for bitrate is bit/s, not bps.

See https://github.com/cabo/kramdown-rfc2629/wiki/Syntax#special-ial-attributes

mnot commented 2 years ago

Thanks.