Skip to content

Commit

Permalink
Use a hash for atom ID to distinguish from a normal word
Browse files Browse the repository at this point in the history
  • Loading branch information
brandur committed Oct 1, 2024
1 parent 984fa0a commit b630c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.go
Original file line number Diff line number Diff line change
Expand Up @@ -1992,7 +1992,7 @@ func renderAtom(ctx context.Context, c *modulir.Context, atom *Atom, atomIndex i
var title string
if atom.Title == nil {
// Twitter doesn't play nicely showing "<" or ">", so don't put those in
title = "Atom " + atom.Slug
title = "Atom #" + atom.Slug
} else {
title = *atom.Title
}
Expand Down

0 comments on commit b630c34

Please sign in to comment.