Skip to content

Commit

Permalink
fix: for the wiki page translation (#33050)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmytroAlipov authored Sep 5, 2023
1 parent d59db28 commit bbd7e28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lms/templates/wiki/includes/editor_widget.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{% load i18n %}
{% load django_markup %}
<p id="hint_id_content" class="help-block">
{% filter force_escape %}
{% blocktrans with start_link="<a id='cheatsheetLink' href='#cheatsheetModal' rel='leanModal'>" end_link="</a>" trimmed %}
Markdown syntax is allowed. See the {{ start_link }}cheatsheet{{ end_link }} for help.
{% blocktrans trimmed asvar tmsg %}
Markdown syntax is allowed. See the {start_link}cheatsheet{end_link} for help.
{% endblocktrans %}
{% endfilter %}
{% interpolate_html tmsg start_link='<a id="cheatsheetLink" href="#cheatsheetModal" rel="leanModal">'|safe end_link='</a>'|safe %}
</p>
<textarea {{ attrs }}>{{ content }}</textarea>

0 comments on commit bbd7e28

Please sign in to comment.