Skip to main content

Moment.js

  • Moment.js is a JavaScript DateTime library
  • Quasi-superceeded by [[Luxon]] (by the same maintainers, in the Moment GitHub Org)
    • Obsidian plugins seem to use [[Luxon]] more and more.

Tokens I use most often

These are the tokens I use most often, mostly for configuring plugins like Periodic Notes and Templater templates.

  • 4-digit year: YYYY
  • 4-digit locale year: gggg
    • Relevant for formatting Weeks. Locale vs. ISO changes what day the week starts
  • 2-digit month: MM
  • 2-digit day of month: DD
  • 2-digit week: ww

And some recipes:

  • year-month-day: YYYY-MM-DD
  • year-month: YYYY-MM
    • useful for monthly folder notes that adhere to the Unique Name Assumption
  • year-week: gggg-[W]ww
    • the brackets are for literals
    • looks like 2025-W25

References