From 460ba8c7b61512a84e751e8c157d7a08d65e31dc Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 26 Feb 2024 07:27:44 +0300 Subject: [PATCH] lib: deprecate unused nmd lib extension --- lib/nmd.nix | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 lib/nmd.nix diff --git a/lib/nmd.nix b/lib/nmd.nix deleted file mode 100644 index fd945f1c..00000000 --- a/lib/nmd.nix +++ /dev/null @@ -1,17 +0,0 @@ -# Copied from nmd master: https://gitlab.com/rycee/nmd/-/blob/master/default.nix?ref_type=heads -# Allows asciiDoc in options. It is easier to copy & keep updated then figure out how to pass the nmd input -# along to user modules -{ - # Indicates that the given text should be interpreted as AsciiDoc markup. - asciiDoc = text: { - _type = "asciiDoc"; - inherit text; - }; - - # Indicates that the given text should be interpreted as AsciiDoc markup and - # used in a literal context. - literalAsciiDoc = text: { - _type = "literalAsciiDoc"; - inherit text; - }; -}