mirror of
https://github.com/foambubble/foam.git
synced 2026-01-15 00:48:09 -05:00
19 lines
352 B
HTML
19 lines
352 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{{ content }}
|
|
|
|
<script type="text/javascript">
|
|
// Hack: Replace page-link with "Page Title"
|
|
document
|
|
.querySelectorAll(".markdown-body a[title]:not([href^=http])")
|
|
.forEach((a) => {
|
|
a.innerText = a.title;
|
|
});
|
|
|
|
document.querySelectorAll(".github-only").forEach((el) => {
|
|
el.remove();
|
|
});
|
|
</script>
|