diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-07-09 19:40:17 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-07-09 19:40:17 +0300 |
commit | f7bfdf58def6aadc922e1632f407d1418269a0d7 (patch) | |
tree | d7a0b2819e6a26c11d40ee0b27267ea827fbb345 /handler/admin/MarkdownPreview.php |
initial
Diffstat (limited to 'handler/admin/MarkdownPreview.php')
-rw-r--r-- | handler/admin/MarkdownPreview.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/handler/admin/MarkdownPreview.php b/handler/admin/MarkdownPreview.php new file mode 100644 index 0000000..e513709 --- /dev/null +++ b/handler/admin/MarkdownPreview.php @@ -0,0 +1,22 @@ +<?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 |