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 am using vim-zettel, which generates links using filenames, such as:
Link: [Digital Gardens] (20230212203048.md)
Now I want to rewrite these links when 11ty saves out the html, to match the permalinks, which generally look something like this:
"permalink": "/essays/{{ title | slugify }}/"
Any suggestions are how to go about this? Thanks!
The text was updated successfully, but these errors were encountered:
So you want to name the names according to their sanitized titles? Try to put this configuration to your .vimrc:
.vimrc
let g:zettel_format = "%title"
I am not sure if it will match the slugify format though.
slugify
Sorry, something went wrong.
No branches or pull requests
I am using vim-zettel, which generates links using filenames, such as:
Link: [Digital Gardens] (20230212203048.md)
Now I want to rewrite these links when 11ty saves out the html, to match the permalinks, which generally look something like this:
"permalink": "/essays/{{ title | slugify }}/"
Any suggestions are how to go about this? Thanks!
The text was updated successfully, but these errors were encountered: