From 3277c52b17d460ed5da2a73cae479e0811f7e77d Mon Sep 17 00:00:00 2001 From: Madison Rye Progress Date: Mon, 6 Oct 2025 00:36:20 -0700 Subject: [PATCH] Add holiday/shabbat --- content/extras/systime.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/extras/systime.md b/content/extras/systime.md index 45d2514..0536b57 100644 --- a/content/extras/systime.md +++ b/content/extras/systime.md @@ -59,7 +59,9 @@ You can use this form to convert to/from [systime](https://wiki.post-self.ink/wi document.getElementById('output').innerHTML = ``; document.getElementById('systime').value = json.systime.string; document.getElementById('date').value = json.gregorian.string; - document.getElementById('hebrew').value = json.hebrew.string; + document.getElementById('hebrew').value = json.hebrew.string + + (json.hebrew.holiday !== null ? ' — ' + json.hebrew.holiday : '') + + (json.hebrew.shabbat ? ' (Shabbat)' : ''); }