-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
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
The '@' should be not part of the author variable in file names #52
Comments
this! How to exclude ALL syntax that will mess up obsidian sync?? |
For those trying to solve this, go to the customize section by clicking the button in the extension settings then in the yaml frontmatter change |
Hello! Contributor to the plugin here. Sanitization is an issue with the export functionality itself (readwise's backend), not the plugin. I've reported it to them in a formal bug report - I'd encourage you to also do the same. You can submit a formal bug report in Reader. That said, here's my own exports configuration for filename and front matter santization. You'll wanna use these snippets on the export preferences page. File name config {{ title|replace('@', '')|replace('#', 'no.')|replace('^', '')|replace('[', '(')|replace(']', ')')|replace('^', '')|replace(': ', ' - ')|replace(' | ', ' - ') }} ^ note that there's a few opinionated replacements in there. I explain them here. YAML Front matter (note that
@0xDezzy worth noting that you can just use quotes around it like |
My export looks something like this:
The import fails because the '@' character is not allowed for naming files. This results in this error message:
It would be really helpful if the '@' character would just be removed.
The text was updated successfully, but these errors were encountered: