diff --git a/demo/alaska.html b/demo/alaska.html
index 02fdeb6..2687fce 100644
--- a/demo/alaska.html
+++ b/demo/alaska.html
@@ -20,7 +20,7 @@
fetch('/demo/alaska.md')
.then((response) => response.text())
.then((text) => {
- const rawHtml = marked(text);
+ const rawHtml = marked.parse(text);
document.querySelector('main').innerHTML = rawHtml;
Prism.highlightAll();
});