commit c8fd567dead8bfd32e3a9d1b0c3728ad8671a62a from: Omar Polo date: Tue Apr 27 09:17:52 2021 UTC sync commit - 3f0b7cd1e4c004abe10967562a7a49ee781de4c4 commit + c8fd567dead8bfd32e3a9d1b0c3728ad8671a62a blob - 160a301d147c3fc77465a00801ceff7b675ff286 blob + e6bcbe0cacf2313e9710b0cec0a001e779983f72 --- resources/cgi/gempkg +++ resources/cgi/gempkg @@ -136,10 +136,7 @@ def searchpage(): nav() for row in cursor: stem, comment, fullpkgpath = row - print(f"=> {script_path}/{fullpkgpath}/ {stem}") - print(f"> {comment}") - print("") - print("") + print(f"=> {script_path}/{fullpkgpath}/ {stem}: {comment}") foot() @@ -185,7 +182,7 @@ def portpage(row): print("Maintainer:", maintainer) print("") print("## Description") - printraw(re.sub(r"\n", " ", descr)) + verbatim(f"{stem} description", descr) print("") if readme: print("## Readme")