mirror of https://github.com/Desuuuu/klipper.git
docs: Simplify javascript link modification for external references
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
14952ccef5
commit
1f9516ad7f
|
@ -121,10 +121,9 @@
|
|||
|
||||
<!-- Javascript to automatically fix links to files outside docs/ -->
|
||||
<script>
|
||||
$("a[href^='../']")
|
||||
.each(function () {
|
||||
this.href = $(this).attr("href").replace(/^\.\./, "https://github.com/KevinOConnor/klipper/blob/master");
|
||||
});
|
||||
$('.markdown-body').find('a[href^="../"]').each(function() {
|
||||
this.href = $(this).attr("href").replace(/^\.\./, "https://github.com/KevinOConnor/klipper/blob/master");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue