Files
neutron/doc/source
Stephen Finucane d409296bde docs: Deindent code blocks
We had a number of code blocks that were being incorrectly rendered
inside block quotes, which messed with formatting somewhat. Correct
them. This was done using the following script:

  sphinx-build -W -b xml doc/source doc/build/xml
  files=$(find doc/build/xml -name '*.xml' -print)
  for file in $files; do
      if xmllint -xpath "//block_quote/literal_block" "$file" &>/dev/null; then
          echo "$file"
      fi
  done

Note that this also highlighted a file using DOS line endings. This is
corrected.

Change-Id: If63f31bf13c76a185e2c6eebc9b85f9a1f3bbde8
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
2023-05-10 17:37:26 +01:00
..
2023-05-10 17:37:26 +01:00
2023-05-10 17:37:26 +01:00
2023-05-10 17:37:26 +01:00
2021-11-08 10:42:22 +00:00
2023-03-28 06:59:20 +00:00
2019-08-26 02:50:58 +09:00
2019-08-26 02:50:58 +09:00
2021-12-24 10:02:03 +08:00