-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmakedoc.g
20 lines (17 loc) · 985 Bytes
/
makedoc.g
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# francy: Interactive Discrete Mathematics in GAP
#
# This file is a script which compiles the package manual.
#
if fail = LoadPackage("AutoDoc", "2016.02.16") then
Error("AutoDoc version 2016.02.16 or newer is required.");
fi;
AutoDoc(rec(autodoc := true,
scaffold := rec(includes := ["intro.xml"],
entities := rec(Jupyter := "<URL Text=\"Jupyter\">https://jupyter.org</URL>",
SubgroupLattice := "<URL Text=\"SubgroupLattice\">https://github.com/mcmartins/subgroup-lattice</URL>",
FrancyMonoids := "<URL Text=\"FrancyMonoids\">https://github.com/gap-packages/FrancyMonoids</URL>",
JupyterKernel := "<Package>JupyterKernel</Package>",
json := "<Package>json</Package>",
uuid := "<Package>uuid</Package>"))));
QUIT;