Alias(es)
Here’s what I use for my urls:
url: hugo
alias: # aliases for multiple
- post/hugo
-
But in order for aliases to work, I have to change aslias
to asliases
, save. Then change it back to aslias
. Strange.
Markdown All in One
Hands down the best extension to use within VSCode is Markdown All in One.
- Paste links over text for automatic linking
- Continues ordered and unordered lists when typing
Working Checkbox Items
Add the below snippet to footer e.g. extend_footer.html
in PaperMod.
// Clickable checkboxes
const checkboxes = document.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach(checkbox => {
// remove the disabled attribute; added by kramdown by default
checkbox.removeAttribute('disabled');
});
Thanks to Gurjot