Fix formatting of example blocks
With the new stylesheet example blocks (delimited with ====) are
rendered as rather intrusive boxes with large padding in yellow
and grey.
This patch replaces the example blocks with simple code blocks
(delimited with ----) that better match the overall style of the
documentation.
Change-Id: Id95387cdb153332c2066e2d5e378697647dbca52
Signed-off-by: Michael Ochmann <michael.ochmann@sap.com>
diff --git a/Documentation/dev-release-subproject.txt b/Documentation/dev-release-subproject.txt
index 9571edb..fcafea5 100644
--- a/Documentation/dev-release-subproject.txt
+++ b/Documentation/dev-release-subproject.txt
@@ -6,9 +6,9 @@
* Build the latest snapshot and install it into the local Maven
repository:
+
-====
+----
mvn clean install
-====
+----
* Test Gerrit with this snapshot locally
@@ -27,9 +27,9 @@
* Deploy the new snapshot:
+
-====
+----
mvn deploy
-====
+----
* Change the `id`, `bin_sha1`, and `src_sha1` values in the `maven_jar`
for the subproject in `/lib/BUCK` to the `SNAPSHOT` version.
@@ -50,15 +50,15 @@
* Create the Release Tag
+
-====
- git tag -a -m "prolog-cafe 1.3" v1.3
-====
+----
+ git tag -a -m "prolog-cafe 1.3" v1.3
+----
* Build and install into local Maven repository:
+
-====
+----
mvn clean install
-====
+----
[[publish-release]]
@@ -72,18 +72,18 @@
* Deploy the new release:
+
-====
+----
mvn deploy
-====
+----
* Push the pom change(s) to the project's repository
`refs/for/<master|stable>`
* Push the Release Tag
+
-====
+----
git push gerrit-review refs/tags/v1.3:refs/tags/v1.3
-====
+----
GERRIT