Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc heading levels - master #3151

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
CUG: command label before heading.
  • Loading branch information
hjoliver committed May 2, 2019
commit 2b4db046a576518e4a4c41a578385f1ff8c705c1
8 changes: 4 additions & 4 deletions doc/src/custom/make-commands.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ END
for CAT in $($CYLC categories); do
cat >> "$COMMAND_REF_FILE" <<END
.. _command-cat-${CAT}:
${CAT}
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. _command-cat-${CAT}:
.. code-block:: none
$("$CYLC" "$CAT" --help | awk '{print " " $0}')
Expand All @@ -68,11 +68,11 @@ END
for COM in $($CYLC commands); do
cat >> "$COMMAND_REF_FILE" <<END
.. _command-${COM}:
${COM}
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. _command-${COM}:
.. code-block:: none
$("$CYLC" "$COM" --help | awk '{print " " $0}')
Expand Down