From 443affd1f8cedf58ad114152e6f7b926a0bfa2db Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Sat, 18 Aug 2018 22:34:13 -0700 Subject: [PATCH] Use the README for intro manual material (try 1) --- README.md | 8 ++++++-- makedoc.g | 3 ++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 71768b1..1c10f38 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,14 @@ file tree in a directory in your package search path, e.g. the pkg directory of your GAP installation, or perhaps the .gap/pkg subdirectory of your home directory. -Authors/maintainers of RAQ: Glen Whitney - + The authors of RAQ would like to acknowledge their debt to the creators of RIG, an earlier package for Racks in GAP; chief among them is Leandro Vendramin. RIG was an inspiration for the creation of RAQ, and using and reading that package suggested many features needed in the development of RAQ. + + +Authors/maintainers of RAQ: Glen Whitney diff --git a/makedoc.g b/makedoc.g index 64e63e9..74131bc 100644 --- a/makedoc.g +++ b/makedoc.g @@ -2,5 +2,6 @@ # build the documentation for RAQ via AutoDoc LoadPackage("AutoDoc"); -AutoDoc(rec(scaffold := true, autodoc := true)); +AutoDoc(rec(scaffold := true, + autodoc := rec(files := ["README.md"]))); QUIT;