Various tweaks making use of new formatting

This commit is contained in:
2022-11-29 03:33:53 -05:00
parent 4395e5d563
commit 0e5d54cf18
3 changed files with 14 additions and 15 deletions

View File

@@ -19,7 +19,7 @@ type Bookmark struct {
var bookmarks []Bookmark
func Gemtext () (page string) {
page += "# Bookmarks\n"
page += "# Bookmarks\n\n"
for _, bookmark := range bookmarks {
page +=
"=> " + bookmark.Location.String() +