hgrc.5: do not turn random URLs into links
authorMartin Geisler <mg@lazybytes.net>
Sat, 07 Nov 2009 14:41:03 +0100
changeset 9745 5b8e0da2d59b
parent 9744 e8990ce2f2d4
child 9746 2dee9a359262
hgrc.5: do not turn random URLs into links URLs and email addresses are automatically turned into links. We don't want that when talking about example links and addresses.
doc/hgrc.5.txt
--- a/doc/hgrc.5.txt	Sat Nov 07 14:30:58 2009 +0100
+++ b/doc/hgrc.5.txt	Sat Nov 07 14:41:03 2009 +0100
@@ -740,7 +740,7 @@
     Whether to prompt for a username when committing. If True, and
     neither ``$HGUSER`` nor ``$EMAIL`` has been specified, then the user will
     be prompted to enter a username. If no username is entered, the
-    default USER@HOST is used instead.
+    default ``USER@HOST`` is used instead.
     Default is False.
 ``debug``
     Print debugging information. True or False. Default is False.
@@ -809,8 +809,8 @@
     IOError or MemoryError). Default is False.
 ``username``
     The committer of a changeset created when running "commit".
-    Typically a person's name and email address, e.g. "Fred Widget
-    <fred@example.com>". Default is ``$EMAIL`` or username@hostname. If
+    Typically a person's name and email address, e.g. ``Fred Widget
+    <fred@example.com>``. Default is ``$EMAIL`` or ``username@hostname``. If
     the username in hgrc is empty, it has to be specified manually or
     in a different hgrc file (e.g. ``$HOME/.hgrc``, if the admin set
     "username =" in the system hgrc).
@@ -864,7 +864,7 @@
 ``baseurl``
     Base URL to use when publishing URLs in other locations, so
     third-party tools like email notification hooks can construct
-    URLs. Example: "http://hgserver/repos/"
+    URLs. Example: ``http://hgserver/repos/``.
 ``contact``
     Name or email address of the person in charge of the repository.
     Defaults to ui.username or ``$EMAIL`` or "unknown" if unset or empty.
@@ -925,7 +925,7 @@
     Base URL to use for static files. If unset, static files (e.g. the
     hgicon.png favicon) will be served by the CGI script itself. Use
     this setting to serve them directly with the HTTP server.
-    Example: "http://hgserver/static/"
+    Example: ``http://hgserver/static/``.
 ``stripes``
     How many lines a "zebra stripe" should span in multiline output.
     Default is 1; set to 0 to disable.