aboutsummaryrefslogtreecommitdiff
path: root/handler/admin/MarkdownPreview.php
diff options
context:
space:
mode:
Diffstat (limited to 'handler/admin/MarkdownPreview.php')
-rw-r--r--handler/admin/MarkdownPreview.php22
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