//// Included in: - user-manual: Text Substitutions: quotes //// The `quotes` substitution replaces the formatting markup on inline elements. For example, when a document is converted to HTML, any asterisks enclosing text are replaced with `` HTML tags. .Syntax input [source] ---- Happy werewolves are *really* slobbery. ---- .HTML output [source,html] ---- Happy werewolves are really slobbery. ---- The following table shows the HTML markup that is generated by the quotes substitution process. .HTML markup generated from AsciiDoc formatting syntax [cols="3,^3,^4l"] |=== |Name |AsciiDoc |HTML |emphasis |pass:[_word_] |word |strong |pass:[*word*] |word |monospace |pass:[`word`] |word |superscript |pass:[^word^] |word |subscript |pass:[~word~] |word |double curved quotes |pass:["`word`"] |“word” |single curved quotes |pass:['`word`'] |‘word’ |=== The quotes substitution occurs on formatted text within title, paragraph, example, quote, sidebar, and verse blocks. .Elements subject to quotes text substitution [width="40%", cols="3,^2"] |=== |Element | `quotes` substitution |Attribute Entry Value |{n} |Comment |{n} |Example |{y} |Fenced |{n} |Header |{n} |Literal |{n} |Listing |{n} |Macro |{y} |Open |Varies |Paragraph |{y} |Passthrough |{n} |Quote |{y} |Sidebar |{y} |Source |{n} |Special sections |{y} |Table |Varies |Title |{y} |Verse |{y} |===