diff --git a/kjvstudy_org/templates/book.html b/kjvstudy_org/templates/book.html
index cea8ab8..cf73642 100644
--- a/kjvstudy_org/templates/book.html
+++ b/kjvstudy_org/templates/book.html
@@ -346,9 +346,7 @@ document.addEventListener('DOMContentLoaded', function() {
{% if book_intro and book_intro.introduction %}
Introduction
- {% for paragraph in book_intro.introduction.split('\n\n') %}
- {{ paragraph }}
- {% endfor %}
+ {{ book_intro.introduction|md|safe }}
{% elif introduction %}
@@ -412,9 +410,7 @@ document.addEventListener('DOMContentLoaded', function() {
{% if book_intro and book_intro.historical_context %}
Historical Context
- {% for paragraph in book_intro.historical_context.split('\n\n') %}
- {{ paragraph }}
- {% endfor %}
+ {{ book_intro.historical_context|md|safe }}
{% elif historical_context %}