UNPKG

rehype-citation

Version:

rehype plugin to add citation and bibliography from bibtex files

9 lines (8 loc) 206 B
function fetchId(list, prefix) { let id; while (id === undefined || list.includes(id)) { id = `${prefix}${Math.random().toString().slice(2)}`; } return id; } export default fetchId;