themes-art-deco/press_quote_helpers.go
Alex Dunmow 9fbedf5ba1 initial: theme plugin art-deco
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/art-deco.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:19 +08:00

9 lines
160 B
Go

package main
import "strconv"
// starsAttr renders an int into a stable data-stars attribute string.
func starsAttr(n int) string {
return strconv.Itoa(n)
}