Use the new section title style in Asciidoctor.
We previous use the section title style like:
Section level 1
===============
Section level 2
---------------
Which have a problem in Asciidoctor that the number of "="s or "-"s must match
the number of characters in the header exactly, as a result it's easy to make
mistakes while changing the titles. Asciidoctor provides a better style like:
= Section level 1
== Section level 2
So we switched to this style.
Also fixed a bug in replace_macros.py, which will not cause any problem in the
old style.
Change-Id: I811dd7238735d98f662767c17086152cd69aea02
diff --git a/Documentation/cmd-create-group.txt b/Documentation/cmd-create-group.txt
index bd419fc..d02e2ea 100644
--- a/Documentation/cmd-create-group.txt
+++ b/Documentation/cmd-create-group.txt
@@ -1,12 +1,9 @@
-gerrit create-group
-===================
+= gerrit create-group
-NAME
-----
+== NAME
gerrit create-group - Create a new account group.
-SYNOPSIS
---------
+== SYNOPSIS
--
'ssh' -p <port> <host> 'gerrit create-group'
[--owner <GROUP> | -o <GROUP>]
@@ -17,8 +14,7 @@
<GROUP>
--
-DESCRIPTION
------------
+== DESCRIPTION
Creates a new account group. The group creating user (the user that
fired the create-group command) is not automatically added to
the created group. In case the creating user wants to be a member of
@@ -26,18 +22,15 @@
slightly different from Gerrit's Web UI where the creating user automatically
becomes a member of the newly created group.
-ACCESS
-------
+== ACCESS
Caller must be a member of the privileged 'Administrators' group,
or have been granted
link:access-control.html#capability_createGroup[the 'Create Group' global capability].
-SCRIPTING
----------
+== SCRIPTING
This command is intended to be used in scripts.
-OPTIONS
--------
+== OPTIONS
<GROUP>::
Required; name of the new group.
@@ -69,8 +62,7 @@
--visible-to-all::
If specified, the group members will be visible to all users.
-EXAMPLES
---------
+== EXAMPLES
Create a new account group called `gerritdev` with two initial members
`developer1` and `developer2`. The group should be owned by itself: