We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have set up my daily notes as Dailies/YYYY/YYYY-mm-dd. This will not work with the current od script.
Dailies/YYYY/YYYY-mm-dd
od
It can be fixed by replacing:
date_format = date_format.replace(y_char, yyyy);
with:
date_format = date_format.replaceAll(y_char, yyyy);
TY!
The text was updated successfully, but these errors were encountered:
Thanks! Good to know! Will patch it when I have time.
Sorry, something went wrong.
+1. My format is YYYY/MMMM/M-D-YY (ddd) which results in the note today being named m-11-yy (Sat)
m-11-yy (Sat)
My daily format: YYYY/MM/YYYY-MM-DD-dddd
YYYY/MM/YYYY-MM-DD-dddd
I was able to fix this by correcting od script as bellow:
Line 221 ~ 224
date_format = date_format.replaceAll(y_char, yyyy); date_format = date_format.replaceAll(m_char, mm); date_format = date_format.replaceAll(d_char, dd); date_format = date_format.replaceAll(w_char, ww);
Full script attached. od_fixed.zip
I don't know how to edit the alfreadworkflow file. So could not make a PR.
No branches or pull requests
I have set up my daily notes as
Dailies/YYYY/YYYY-mm-dd
. This will not work with the currentod
script.It can be fixed by replacing:
with:
TY!
The text was updated successfully, but these errors were encountered: