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
Here's an ancient problem that I'd like to see cleared up, in order to make progress on new features for Project + Reviews plugin.
The plugin depends on reading metadata in notes, for example #area @start(2021-09-29) @review(6w) @reviewed(2023-06-23)
#area @start(2021-09-29) @review(6w) @reviewed(2023-06-23)
To do this I first try to get the list of all mentions:
let mentions: $ReadOnlyArray<string> = note.mentions ?? []
but normally it finds none, despite there being many in the note.
So I then have to use this fallback:
const metadataLineIndex = getOrMakeMetadataLine(note) let metadataLine = paras[metadataLineIndex].content mentions = (metadataLine + ' ').split(' ').filter((f) => f[0] === '@')
I've put a warning in the plugin-side docs that this call is unreliable.
The text was updated successfully, but these errors were encountered:
EduardMe
No branches or pull requests
Here's an ancient problem that I'd like to see cleared up, in order to make progress on new features for Project + Reviews plugin.
The plugin depends on reading metadata in notes, for example
#area @start(2021-09-29) @review(6w) @reviewed(2023-06-23)
To do this I first try to get the list of all mentions:
but normally it finds none, despite there being many in the note.
So I then have to use this fallback:
I've put a warning in the plugin-side docs that this call is unreliable.
The text was updated successfully, but these errors were encountered: