abetusk
4 days ago
The neatnik calendar is very nice. Others are talking about enhancements they've done and I've done my own, creating a pretty faithful JavaScript implementation with enhancements:
https://github.com/abetusk/neatocal
https://abetusk.github.io/neatocal/ (demo)
URL parameters can be used to alter behavior. Here's a highlight of some of them:
https://abetusk.github.io/neatocal/?layout=aligned-weekdays&... (weekend highlighted, aligned)
https://abetusk.github.io/neatocal/?start_month=7 (academic)
https://abetusk.github.io/neatocal/?start_month=6&n_month=6 (second half, 6 month)
https://abetusk.github.io/neatocal/?month_code=1%E6%9C%88,2%... (chinese month and day)
There's also a data file option for more complex date notes.
moontear
4 days ago
Awesome! Totally love your version as my first gripe was that I can't adjust naming to fit my needs (localized, non-english). Your JS version is awesome, thanks!
If you want something for your examples, this would be the German-localized version for 2026: https://abetusk.github.io/neatocal/?year=2026&weekday_code=S...
abetusk
4 days ago
Added to the list of presets in the README [0]. Thanks!
[0] https://github.com/abetusk/neatocal?tab=readme-ov-file#prese...
b2ccb2
4 days ago
It would be trivial to allow all possible languages with toLocaleString[0]:
d = new Date();
console.log(d.toLocaleString(window.navigator.language, {
weekday: 'short'
}));
[0] https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...abetusk
3 days ago
Added a language field. Thanks for the suggestion.
Example:
Eduard
3 days ago
MDMDFSS
naja
c6p
3 days ago
Awesome. I have added half-colored days and date emojis to my fork. https://github.com/c6p/neatocal
Check out my Turkish Holidays example for 2026: https://c6p.github.io/neatocal/?data=example/tr-2026.json
erelong
3 days ago
just posting this because I struggled to figure it out for some reason; for doubled sided printing (duplex) with 6 months on each side:
https://abetusk.github.io/neatocal/?year=2026&start_month=0&...
https://abetusk.github.io/neatocal/?year=2026&start_month=6&...
twapi
4 days ago
Thanks for sharing!