On Wed, Jan 20, 2016 at 09:21:37AM -0800, Matt Kraai wrote: > From: Matthew Kraai <matt.kraai@xxxxxxxxxx> > > asciidoctor does not remove backslashes used to escape curly brackets from > the HTML output if the contents of the curly brackets are empty or contain > at least a <, -, or space. asciidoc does not require the backslashes in > these cases, so just remove them. I think these backslashes may have been necessary in older versions of asciidoc, but I don't recall the details. Looks like we did a similar round of cleanups already in 4538a88256, so this is probably safe (and I verified with asciidoc 8.6.9 that the generated output is the same). > -'<refname>@\{<date>\}', e.g. 'master@\{yesterday\}', 'HEAD@\{5 minutes ago\}':: > +'<refname>@{<date>}', e.g. 'master@\{yesterday\}', 'HEAD@{5 minutes ago}':: I see you didn't tweak the middle one here, because it _does_ look like an attribute. Does asciidoctor actually remove the backslashes there? > -'<refname>@\{<n>\}', e.g. 'master@\{1\}':: > +'<refname>@{<n>}', e.g. 'master@\{1\}':: Ditto here for "1". IMHO asciidoctor's behavior is somewhat crazy, as it means you have to know arcane quoting rules to get correct output (you cannot just err on the side of quoting). But it's probably still worth working around. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html