mirror of https://github.com/zulip/zulip.git
templates: Delete unused markdown_help.html.
Apparently I failed to finish deleting it in commit
7f30e5f9df
(#17560).
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
a556abbec6
commit
3e552268e5
|
@ -1,20 +0,0 @@
|
||||||
<div class="overlay-modal hide" id="message-formatting" tabindex="-1" role="dialog"
|
|
||||||
aria-label="{{ _('Message formatting') }}">
|
|
||||||
<div class="modal-body" data-simplebar data-simplebar-auto-hide="false">
|
|
||||||
<div id="markdown-instructions">
|
|
||||||
<table class="table table-striped table-condensed table-rounded table-bordered help-table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>{% trans %}You type{% endtrans %}</th>
|
|
||||||
<th>{% trans %}You get{% endtrans %}</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
<a href="/help/format-your-message-using-markdown" target="_blank" rel="noopener noreferrer">{{ _('Detailed message formatting documentation') }}</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -122,8 +122,6 @@ def check_html_templates(templates: Iterable[str], all_dups: bool, fix: bool) ->
|
||||||
# These use various whitespace-dependent formatting that
|
# These use various whitespace-dependent formatting that
|
||||||
# prevent cleaning them.
|
# prevent cleaning them.
|
||||||
"templates/corporate/zephyr-mirror.html",
|
"templates/corporate/zephyr-mirror.html",
|
||||||
# Can't clean this because of `preserve_spaces`
|
|
||||||
"templates/zerver/app/markdown_help.html",
|
|
||||||
]
|
]
|
||||||
validate(fn=fn, check_indent=(fn not in bad_files))
|
validate(fn=fn, check_indent=(fn not in bad_files))
|
||||||
|
|
||||||
|
@ -133,8 +131,6 @@ def check_html_templates(templates: Iterable[str], all_dups: bool, fix: bool) ->
|
||||||
# for code blocks that prevent cleaning it. Might make sense
|
# for code blocks that prevent cleaning it. Might make sense
|
||||||
# to convert it to a /help/ Markdown article.
|
# to convert it to a /help/ Markdown article.
|
||||||
"templates/corporate/zephyr-mirror.html",
|
"templates/corporate/zephyr-mirror.html",
|
||||||
# Can't clean this because of `preserve_spaces`
|
|
||||||
"templates/zerver/app/markdown_help.html",
|
|
||||||
]
|
]
|
||||||
# TODO: Clean these files
|
# TODO: Clean these files
|
||||||
for fn in templates:
|
for fn in templates:
|
||||||
|
|
Loading…
Reference in New Issue