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>
9 lines
160 B
Go
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)
|
|
}
|