summary refs log tree commit diff stats
path: root/doc/tools.rst
diff options
context:
space:
mode:
authorquantimnot <54247259+quantimnot@users.noreply.github.com>2021-03-18 23:37:55 -0400
committerGitHub <noreply@github.com>2021-03-18 20:37:55 -0700
commit83ae70cb540661934b263d38f0a3864a982c0681 (patch)
tree2c7dab75410062ad06a0b6f40bee41e3f0bb3cff /doc/tools.rst
parent15586c7a7a54f9d573eed9ec4ec90994e1e0c483 (diff)
downloadNim-83ae70cb540661934b263d38f0a3864a982c0681.tar.gz
RST backtick refactor (all *.rst except manual.rst and rst_examples.rst) (#17258)
Co-authored-by: quantimnot <quantimnot@users.noreply.github.com>
Diffstat (limited to 'doc/tools.rst')
-rw-r--r--doc/tools.rst12
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/tools.rst b/doc/tools.rst
index f231cdc7d..e0044e1ca 100644
--- a/doc/tools.rst
+++ b/doc/tools.rst
@@ -1,3 +1,5 @@
+.. default-role:: code
+
 ========================
 Tools available with Nim
 ========================
@@ -9,11 +11,11 @@ The standard distribution ships with the following tools:
     document explaining how it works.
 
 - | `Documentation generator <docgen.html>`_
-  | The builtin document generator ``nim doc`` generates HTML documentation
-    from ``.nim`` source files.
+  | The builtin document generator `nim doc` generates HTML documentation
+    from `.nim` source files.
 
 - | `Nimsuggest for IDE support <nimsuggest.html>`_
-  | Through the ``nimsuggest`` tool, any IDE can query a ``.nim`` source file
+  | Through the `nimsuggest` tool, any IDE can query a `.nim` source file
     and obtain useful information like the definition of symbols or suggestions for
     completion.
 
@@ -27,11 +29,11 @@ The standard distribution ships with the following tools:
   | Nim search and replace utility.
 
 - | nimpretty
-  | ``nimpretty`` is a Nim source code beautifier,
+  | `nimpretty` is a Nim source code beautifier,
     to format code according to the official style guide.
 
 - | `testament <https://nim-lang.github.io/Nim/testament.html>`_
-  | ``testament`` is an advanced automatic *unittests runner* for Nim tests,
+  | `testament` is an advanced automatic *unittests runner* for Nim tests,
     is used for the development of Nim itself, offers process isolation for your tests,
     it can generate statistics about test cases, supports multiple targets (C, JS, etc),
     `simulated Dry-Runs <https://en.wikipedia.org/wiki/Dry_run_(testing)>`_,