## Context When trying to use a code block containing django templating syntax, publishing the article throws an error. ## Expected Behavior Articles can be published with django templating code blocks ## Current Behavior When submitting, error messages are shown and the article does not publish. ## Screenshots  ## Steps to reproduce Please provide detailed steps for reproducing the issue 1. Create an article 2. Add a code block with django templating syntax: ``` { % if request.user == recipe.owner % } <div class="text-center"> <a href="{% url 'edit_recipe' recipe.id %}" class="btn btn-primary w-25">Edit</a> <a href="{% url 'delete_recipe' recipe.id %}" class="btn btn-primary w-25">Delete</a> </div> { % endblock % } ``` 3. Submit article ## Additional info You can escape this in the UI with {% markdoc-example %} {% /markdoc-example %} but it still won't publish.