From 0426200b3e750f44483f8501cde833bfe6e1261f Mon Sep 17 00:00:00 2001 From: Jim Mason Date: Sat, 28 Sep 2024 15:44:08 +0100 Subject: [PATCH] deprecated UICommon::markdownHelp; renamed markdown-help template --- ui/UICommon.php | 17 ----------------- ui/templates/default/list/editor.html | 2 +- ...ck-markdown-help.html => markdown-help.html} | 0 3 files changed, 1 insertion(+), 18 deletions(-) rename ui/templates/default/{block-markdown-help.html => markdown-help.html} (100%) diff --git a/ui/UICommon.php b/ui/UICommon.php index f47d502a..56656cc2 100644 --- a/ui/UICommon.php +++ b/ui/UICommon.php @@ -176,23 +176,6 @@ public static function markdown($text) { })->toHtml($text); } - public static function markdownHelp() { ?> - -
- - - - - - - - -
type this:to get this:
*italics*italics
**bold**bold
* item 1
* item 2
* item 3
  • item 1
  • item 2
  • item 3
1. item 1
2. item 2
3. item 3
  1. item 1
  2. item 2
  3. item 3
## heading

heading

[RocketMan](https://github.com/RocketMan)RocketMan
-
- - - {%~ include 'block-markdown-help.html' %} + {%~ include 'markdown-help.html' %}
diff --git a/ui/templates/default/block-markdown-help.html b/ui/templates/default/markdown-help.html similarity index 100% rename from ui/templates/default/block-markdown-help.html rename to ui/templates/default/markdown-help.html