{
const today = new Date().getTime() + Year.step * 1970;
const daysInYear = today % Year.step;
return md`
| Grain | Units |
| :------- | :----- |
| Seconds per minute | \`${Minute.step / Second.step}\` |
| Minutes per hour | \`${Hour.step / Minute.step}\` |
| Hours per day | \`${Day.step / Hour.step}\` |
| Days per month | \`${Month.step / Day.step}\` |
| Days per year | \`${Year.step / Day.step}\` |
| Months per year | \`${Year.step / Month.step}\` |
| Years since EPOCH | \`${new Date(0).getTime() / Year.step}\` |
| Year from today since EPOCH | \`${new Date().getTime() / Year.step}\`
| Current Year | \`${today / Year.step}\`
| Days in Year | \`${daysInYear / Day.step}\`
| Current Month | \`${((today / Month.step) % Month.period) + Month.offset}\` `
`;
}