asciidoctor / kramdown-asciidoc

A kramdown extension for converting Markdown documents to AsciiDoc.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Define id using attribute if value contains a period

mojavelinux opened this issue · comments

If an id contains a period (.), it must be written out longhand using the id attribute instead of shorthand. The reason this must be done is because the period has special meaning in the shorthand syntax.

Example:

[id=a.b.c]
== Section Title

Quotes aren't necessary since the ID should not contain quotes, spaces, or commas.