Overview
Comment:disable pdf generation for now as it is buggy
Timelines: family | ancestors | descendants | both | revise-for-2024
Files: files | file ages | folders
SHA3-256: 695e7769fc60380eeed4a3096bcaedd85cc42716498fe2690c2e362028777809
User & Date: jboy on 2024-04-11 12:26:08
Other Links: branch diff | manifest | tags
Context
2024-04-11
14:24
remove unused literature check-in: 01cdee4ac6 user: jboy tags: revise-for-2024
12:26
disable pdf generation for now as it is buggy check-in: 695e7769fc user: jboy tags: revise-for-2024
12:23
update overview and faq check-in: d093390a97 user: jboy tags: revise-for-2024
Changes

Modified mkdocs.yml from [4b7a7728b1] to [7a96b40d41].

22
23
24
25
26
27
28
29
30
31
32
33

markdown_extensions:
  - smarty
  - def_list

plugins:
  - search
  - with-pdf:
      cover_subtitle: "Spring 2023"
      toc_title: "Contents"
      toc_level: 1
      ordered_chapter_level: 1







|
|
|
|
|
22
23
24
25
26
27
28
29
30
31
32
33

markdown_extensions:
  - smarty
  - def_list

plugins:
  - search
# - with-pdf:
#     cover_subtitle: "Spring 2024"
#     toc_title: "Contents"
#     toc_level: 1
#     ordered_chapter_level: 1

Modified shell.nix from [0c2df29181] to [e6110a00bc].

1
2
3
4
5
6
7
8
9
10
11
12
with import <nixpkgs> {};
mkShell {
  venvDir = ".venv";
  buildInputs = with python3.pkgs; [
    haskellPackages.pandoc
    weasyprint
    venvShellHook
  ];
  postShellHook = ''
    pip install mkdocs-with-pdf
  '';
}



|

|
|

<
<
<

1
2
3
4
5
6
7
8



9
with import <nixpkgs> {};
mkShell {
  venvDir = ".venv";
  buildInputs = [
    haskellPackages.pandoc
    (python310.withPackages (p: with p; [ weasyprint mkdocs ]))
    python310Packages.venvShellHook
  ];



}