diff options
author | stuebinm <stuebinm@disroot.org> | 2024-04-05 23:41:44 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-04-06 13:14:14 +0000 |
commit | a33c95be5b2a993d3e39477b5793b6836aedafdb (patch) | |
tree | 5d18c04e04982aa8f30fbf9beb691355a8965f4b /flake.nix | |
parent | fae48884c53f3f3a65c36ffb8e0399bd6334a65f (diff) |
avoid markdown which the repl's :doc cannot handle
code blocks, if not surrounded by empty lines, have the language
tags (in these cases, always `nix`) show up in the output of :doc.
for example:
nix-repl> :doc builtins.parseFlakeRef
Synopsis: builtins.parseFlakeRef flake-ref
Parse a flake reference, and return its exploded form.
For example: nix builtins.parseFlakeRef
"github:NixOS/nixpkgs/23.05?dir=lib" evaluates to: nix { dir =
"lib"; owner = "NixOS"; ref = "23.05"; repo = "nixpkgs"; type =
"github"; }
is now instead:
nix-repl> :doc builtins.parseFlakeRef
Synopsis: builtins.parseFlakeRef flake-ref
Parse a flake reference, and return its exploded form.
For example:
| builtins.parseFlakeRef "github:NixOS/nixpkgs/23.05?dir=lib"
evaluates to:
| { dir = "lib"; owner = "NixOS"; ref = "23.05"; repo = "nixpkgs"; type = "github"; }
(closes #225)
Change-Id: I0741aeb1006a5376bb2f663d202c7a4da7e38cce
Diffstat (limited to 'flake.nix')
0 files changed, 0 insertions, 0 deletions