Sebastian Walz 9f7b02e1cd
Tohu vaBohu
2023-04-03 14:38:02 +02:00

12 lines
569 B
Nix

{ core, ... }:
let
inherit(core) string;
escape = string.replace [ "_" "%" ] [ "\\_" "\\%" ];
in
{
formatEmailTeX = href: text: "\\mbox{\\href{mailto:${href}}{${escape text}}}";
formatHttpsTeX = href: text: "\\mbox{\\href{https://${href}}{${escape text}}}";
formatHttpsTeX' = href: text: "\\mbox{\\href{https:\\//${href}}{${escape text}}}";
formatTeX = href: text: "\\mbox{\\href{${href}}{${escape text}}}";
}