summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/about.md6
-rw-r--r--hugo.toml3
2 files changed, 8 insertions, 1 deletions
diff --git a/content/about.md b/content/about.md
index 7f61ed9..98ab4d7 100644
--- a/content/about.md
+++ b/content/about.md
@@ -4,4 +4,8 @@ title = 'About'
My name is Hunter. I'm a hobbyist multimedia programmer from Minnesota.
-I can be reached at hunter@kvog.sh, or https://x.com/hk_kvog.
+I can be reached at <span id="my-email">hunter @ \<this domain\></span>, or https://x.com/hk_kvog.
+<script>
+ let address = atob('aHVudGVyQGt2b2cuc2g=');
+ document.getElementById('my-email').innerHTML = `<a href="mailto:${address}">${address}</a>`
+</script>
diff --git a/hugo.toml b/hugo.toml
index b6c9cf2..c6c93e2 100644
--- a/hugo.toml
+++ b/hugo.toml
@@ -3,6 +3,9 @@ languageCode = 'en-us'
title = 'kvog.sh'
theme = 'hugo-xmin'
+[markup.goldmark.renderer]
+ unsafe = true
+
[markup.highlight]
style = "github"
noClasses = false \ No newline at end of file