{# INPUT: - cell -- Cell instance - wrap -- number of columns to wrap - do_print -- whether to display for printing - do_math_parse -- whether to parse jsMath - editing -- whether user is editing the cell #} {% if not do_print and not cell.worksheet().docbrowser() %}
{% endif %}
{% if do_math_parse %} {{ cell.plain_text()|math_parse }} {% else %} {{ cell.plain_text() }} {% endif %}
{% if JEDITABLE_TINYMCE and not cell.worksheet().is_published() and not cell.worksheet().docbrowser() and not do_print %} {% endif %} {% if editing and not do_print %} {% endif %}