mirror of
https://github.com/foambubble/foam.git
synced 2026-04-24 03:01:01 -04:00
17 lines
320 B
HTML
17 lines
320 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{{ content }}
|
|
|
|
<script type="text/javascript">
|
|
// Hack: Replace page-link with "Page Title"
|
|
document.querySelectorAll(".markdown-body a[title]").forEach((a) => {
|
|
a.innerText = a.title;
|
|
});
|
|
|
|
document.querySelectorAll(".github-only").forEach((el) => {
|
|
el.remove();
|
|
});
|
|
</script>
|