lol

nixos-render-docs: make manpage deflists a little nicer

indent the entire list by 4, just like each definition is already
indented by 4. this matches rendering in html, which indents terms once
and indents definitions twice.

authored by

pennae and committed by
pennae
f47adfcb 1e4bafdb

+2 -2
+2 -2
pkgs/tools/nix/nixos-render-docs/src/nixos_render_docs/manpage.py
··· 263 263 return self._admonition_close() 264 264 def dl_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 265 265 env: MutableMapping[str, Any]) -> str: 266 - return "" 266 + return ".RS 4" 267 267 def dl_close(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 268 268 env: MutableMapping[str, Any]) -> str: 269 - return "" 269 + return ".RE" 270 270 def dt_open(self, token: Token, tokens: Sequence[Token], i: int, options: OptionsDict, 271 271 env: MutableMapping[str, Any]) -> str: 272 272 return ".PP"