summary refs log tree commit diff
path: root/nixos/modules/services/networking/bird.nix
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-08-02 02:47:05 +0200
committerpennae <github@quasiparticle.net>2022-08-03 21:03:23 +0200
commit16102dce2fbad670bd47dd75c860a8daa5fe47ad (patch)
tree26fa9aed51c066b5145eae0d87f4ba387e3ecd48 /nixos/modules/services/networking/bird.nix
parent694d5b19d30bf66687b42fb77f43ea7cd1002a62 (diff)
downloadnixpkgs-16102dce2fbad670bd47dd75c860a8daa5fe47ad.tar
nixpkgs-16102dce2fbad670bd47dd75c860a8daa5fe47ad.tar.gz
nixpkgs-16102dce2fbad670bd47dd75c860a8daa5fe47ad.tar.bz2
nixpkgs-16102dce2fbad670bd47dd75c860a8daa5fe47ad.tar.lz
nixpkgs-16102dce2fbad670bd47dd75c860a8daa5fe47ad.tar.xz
nixpkgs-16102dce2fbad670bd47dd75c860a8daa5fe47ad.tar.zst
nixpkgs-16102dce2fbad670bd47dd75c860a8daa5fe47ad.zip
nixos/*: replace <code> in option docs with <literal>
markdown can't represent the difference without another extension and
both the html manual and the manpage render them the same, so keeping the
distinction is not very useful on its own. with the distinction removed
we can automatically convert many options that use <code> tags to markdown.

the manpage remains unchanged, html manual does not render
differently (but class names on code tags do change from "code" to "literal").
Diffstat (limited to 'nixos/modules/services/networking/bird.nix')
-rw-r--r--nixos/modules/services/networking/bird.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix
index d409f060228..b166209fa96 100644
--- a/nixos/modules/services/networking/bird.nix
+++ b/nixos/modules/services/networking/bird.nix
@@ -24,7 +24,7 @@ in
         description = ''
           Whether the config should be checked at build time.
           When the config can't be checked during build time, for example when it includes
-          other files, either disable this option or use <code>preCheckConfig</code> to create
+          other files, either disable this option or use <literal>preCheckConfig</literal> to create
           the included files before checking.
         '';
       };
@@ -36,7 +36,7 @@ in
         '';
         description = ''
           Commands to execute before the config file check. The file to be checked will be
-          available as <code>bird2.conf</code> in the current directory.
+          available as <literal>bird2.conf</literal> in the current directory.
 
           Files created with this option will not be available at service runtime, only during
           build time checking.