taserBibliography = {
let bib = md`${bibliography.format('bibliography', {
format: 'text',
template: 'md',
prepend() {
return `* `;
}
})}`;
bib.querySelectorAll('li a:first-child').forEach(link => {
link.setAttribute('name', link.hash.substr(1));
link.removeAttribute('href');
});
return bib;
}