diff options
Diffstat (limited to 'handler/admin/MarkdownPreview.php')
-rw-r--r-- | handler/admin/MarkdownPreview.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/handler/admin/MarkdownPreview.php b/handler/admin/MarkdownPreview.php deleted file mode 100644 index e513709..0000000 --- a/handler/admin/MarkdownPreview.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -namespace handler\admin; - -use Response; - -class MarkdownPreview extends AdminRequestHandler { - - public function post(): Response { - list($md, $title, $use_image_previews) = $this->input('md, title, b:use_image_previews'); - - $html = \markup::markdownToHtml($md, $use_image_previews); - - $ctx = new \SkinContext('\\skin\\admin'); - $html = $ctx->markdownPreview( - unsafe_html: $html, - title: $title - ); - return new \AjaxOkResponse(['html' => $html]); - } - -}
\ No newline at end of file |