mirror of
https://github.com/foambubble/foam.git
synced 2026-01-12 23:48:19 -05:00
29 lines
699 B
HTML
29 lines
699 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>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
tex2jax: {
|
|
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
|
|
inlineMath: [['$','$']]
|
|
}
|
|
});
|
|
</script>
|