On Sat, Dec 15, 2012 at 06:24:09PM +0000, John Keeping wrote: > > I think I'd just render them monospace everywhere. We are very > > inconsistent about which form of quotes we use in the documentation (I > > think because most of the developers read the source directly and not > > the rendered asciidoc). And then we don't have to worry about the "$$" > > construct (and IMHO it makes the source much more readable, and marking > > the address as a literal looks good in the output, too). > > I agree that the source is more readable as monospaced, but I think we > need to keep the quotes around the text in git-tag(1) and probably > git-fast-import(1) so that it is differentiated from the surrounding > text in the man page output. Hmm, good point. I use MAN_BOLD_LITERAL, which serves that purpose, but I guess not everyone does (and it is not the default; I wonder if it should be). But if MAN_BOLD_LITERAL is not in use, then `` literals have zero typographical impact in the manpages. So maybe we do need to do something else. I was just hoping we could get away with something more readable in the source. By my reading of the asciidoc user guide, the mechanism that is hurting us is that mailto is an inline macro, and that foo@bar automatically triggers that inline macro. Furthermore, the right way to suppress expansion of macros is with a backslash escape. Doing this: diff --git a/Documentation/git-fast-import.txt b/Documentation/git-fast-import.txt index d1844ea..68bca1a 100644 --- a/Documentation/git-fast-import.txt +++ b/Documentation/git-fast-import.txt @@ -427,7 +427,7 @@ Here `<name>` is the person's display name (for example Here `<name>` is the person's display name (for example ``Com M Itter'') and `<email>` is the person's email address -(``cm@xxxxxxxxxxx''). `LT` and `GT` are the literal less-than (\x3c) +(``\cm@xxxxxxxxxxx''). `LT` and `GT` are the literal less-than (\x3c) and greater-than (\x3e) symbols. These are required to delimit the email address from the other fields in the line. Note that `<name>` and `<email>` are free-form and may contain any sequence seems to produce the output we want. I think it's a little less ugly than the "$$" quoting, but not by much. No clue if one is accepted by more asciidoc versions or not. -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