]> BookStack Code Mirror - hacks/blob - content/force-page-links-new-tab/head.html
refactor(mermaid-viewer): Construct viewer DOM programmatically
[hacks] / content / force-page-links-new-tab / head.html
1 <script type="module">
2     const links = document.querySelectorAll('.page-content a');
3     for (const link of links) {
4         link.target = '_blank';
5     }
6 </script>