Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

14 lines
437 B
Nix

{ core, ... } @ libs:
{ language, style, title, ... } @ resume:
let
inherit(core) indentation library;
config = { inherit language; } // (style.config or {});
style' = (library.import ./styles libs).${style.name or style} config;
in
[
"\\cleardoublepage"
"\\phantomsection"
"\\addsectiontocentry{}{${title}}"
]
++ style' resume