diff --git a/CHANGES.md b/CHANGES.md index 1511fd05..54332e60 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -35,6 +35,10 @@ This file describes changes in the AutoDoc package. nested source directories are picked up automatically + **Other Changes** + - Don't insert extra newlines after author names for the PDF title + pages (this was a workaround for a GAPDoc issue; hopefully a + future GAPDoc release will fix this properly; for details, see + ) - Improve `DeclareGlobalName` handling: document it as a variable by default, but switch to a function when `@Arguments` or `@Returns` provides function-style documentation diff --git a/gap/AutoDocMainFunction.gi b/gap/AutoDocMainFunction.gi index 80215fc5..40784c0a 100644 --- a/gap/AutoDocMainFunction.gi +++ b/gap/AutoDocMainFunction.gi @@ -195,8 +195,7 @@ InstallGlobalFunction( ExtractTitleInfoFromPackageInfo, fi; author_string := ""; AUTODOC_APPEND_STRING_ITERATIVE( author_string, - author_rec.FirstNames, " ", author_rec.LastName, - "
" ); + author_rec.FirstNames, " ", author_rec.LastName ); if IsBound( author_rec.PostalAddress ) then tmp_list := SplitString( StripBeginEnd( author_rec.PostalAddress, "\n\r" ), "\n" ); AUTODOC_APPEND_STRING_ITERATIVE( author_string, "
" );