forked from bookstack/hacks
6 lines No EOL 166 B HTML
6 lines
No EOL
166 B
HTML
<script type="module"> | |
const links = document.querySelectorAll('.page-content a'); | |
for (const link of links) { | |
link.target = '_blank'; | |
} | |
</script> |