diff --git a/sagenb/data/sage/html/docs.html b/sagenb/data/sage/html/docs.html index d36fa2603..5e3722751 100644 --- a/sagenb/data/sage/html/docs.html +++ b/sagenb/data/sage/html/docs.html @@ -35,9 +35,9 @@

{{ gettext('How to use the Sage Notebook') }}

{% for x, y in notebook_help %} - + {% for z, w in y %} - + {% endfor %} {% endfor %}
{{ x }}
{{ x | safe }}
{{ z }}{{ w }}
{{ z | safe }}{{ w | safe }}
diff --git a/sagenb/data/sage/html/error_message.html b/sagenb/data/sage/html/error_message.html index 5141bd9c8..f198a05e7 100644 --- a/sagenb/data/sage/html/error_message.html +++ b/sagenb/data/sage/html/error_message.html @@ -12,7 +12,7 @@ {% block main %}
- {{ msg }} + {{ msg | safe }}
{% if cont %}
diff --git a/sagenb/data/sage/html/history.html b/sagenb/data/sage/html/history.html index d6b829678..b96cb48f2 100644 --- a/sagenb/data/sage/html/history.html +++ b/sagenb/data/sage/html/history.html @@ -9,7 +9,7 @@ {% block page_id %}history-page{% endblock %} {% block body %} -
{{ text | escape }}
+
{{ text }}
{{ gettext('Create a new Sage worksheet version of the last 100 commands in the above log.') }} - + {% endblock %} diff --git a/sagenb/data/sage/html/notebook/guest_worksheet_page.html b/sagenb/data/sage/html/notebook/guest_worksheet_page.html index 0994045a1..7e02b169e 100644 --- a/sagenb/data/sage/html/notebook/guest_worksheet_page.html +++ b/sagenb/data/sage/html/notebook/guest_worksheet_page.html @@ -60,8 +60,8 @@

{{ worksheet.name() }}

-

{{ worksheet.html_time_since_last_edited() }}

-{{ worksheet.html(do_print=false, publish=true, username=username) }} +

{{ worksheet.html_time_since_last_edited() | safe }}

+{{ worksheet.html(do_print=false, publish=true, username=username) | safe }}