M TODO => TODO +2 -1
@@ 6,8 6,9 @@ RESEARCH:
FEATURES:
minor/bugs:
-notifications are just a search of mentions
rate limit registration
+
+boring stuff:
better error handling on login
better ux for account creation
links on home and thread list should go to the post ( BETTER LINK TO POST )
M gemtext.go => gemtext.go +1 -1
@@ 20,7 20,7 @@ func (p Post) BuildReply() string {
// TODO link to post
out.Write([]byte(fmt.Sprintf("@%s wrote:\n", p.Author.Username)))
for _, line := range strings.Split(p.Content, "\n") {
- out.Write([]byte("> "))
+ out.Write([]byte(">"))
out.Write([]byte(line))
}
return out.String()
M views/style.css => views/style.css +4 -0
@@ 57,6 57,10 @@ button:not(.link-button) {
background-color: var(--bg-alt);
}
+:target blockquote {
+ background-color: var(--bg);
+}
+
.post-body {
padding-left: 0.4rem;
padding-right: 0.4rem;