On Mon, Sep 15, 2008 at 5:19 AM, Thomas Rast <trast@xxxxxxxxxxxxxxx> wrote: > Replaces all ^ and ~ that are not part of a "literal" paragraph with > {caret} and {tilde}. > > Tildes and carets are ordinarily used for ~sub~ and ^super^scripts. > This only triggers if a suitable chunk of text is found within the > current paragraph, so in most cases nothing happens (and the > tilde/caret is taken literally). However, it is a pitfall for anyone > who later adds more text to the same paragraph, so we might as well do > it right. Rather than uglifying all the documentation to work around the syntax, perhaps we just want to disable subscripts and superscripts altogether? I can't really imagine the git documentation needing them. To do so, we can add these lines to asciidoc.conf (I just did this on another project yesterday, but I haven't tested in git.git): [replacements] # Disable superscripts. \^(.+?)\^=^\1^ # Disable subscripts. ~(.+?)~=~\1~ (For reference, the regexes on the left side of the equal sign came from a file in /etc/asciidoc somewhere.) Have fun, Avery -- 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