summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorThomas Bracht Laumann Jespersen <t@laumann.xyz>2025-03-17 23:17:03 +0100
committerThomas Bracht Laumann Jespersen <t@laumann.xyz>2025-03-17 23:17:03 +0100
commitc904193234ff1286a52627b346ded558458d7372 (patch)
treed4ff65b84a1c7fb88dca7f0cab91a510fea2b579 /contrib
parentfb47c62b3ba99a528369e0ebfccace8d660e2178 (diff)
m__n: a little reformatting, plus add another 2024 6b+ benchmarkHEADmaster
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/moon.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/moon.py b/contrib/moon.py
index cc62f30..2f08efb 100755
--- a/contrib/moon.py
+++ b/contrib/moon.py
@@ -50,8 +50,8 @@ def main():
r = csv.reader(data, delimiter='|')
next(r) # skip the header row
for row in r:
- isbenchmark = "B, " if row[2] == 'true' else ""
- print(f"<p>{row[0]} ({isbenchmark}{row[1]})</p>")
+ isbenchmark = " [benchmark]" if row[2] == 'true' else ""
+ print(f"<p>{row[0]} ({row[1]}){isbenchmark}</p>")
# print(f"<p><code>{row[3]}</code></p>")
print(f"<p><input class=\"mooncode\" value=\"{mooncode(row[3])}\" /></p>")