Files
roundcubemail/plugins/markdown_editor/markdown_editor.php
Pablo Zmdl e21ed0f870 WIP: compose in markdown
This adds a markdown editor that sends HTML to the server.
2025-06-23 15:08:01 +02:00

22 lines
578 B
PHP

<?php
class markdown_editor extends rcube_plugin
{
public $task = 'mail';
#[Override]
public function init()
{
$this->add_hook('message_compose_body', [$this, 'load']);
}
public function load($args)
{
// TODO: Download and serve these files ourselves
$this->include_script('https://uicdn.toast.com/editor/latest/toastui-editor-all.min.js');
$this->include_stylesheet('https://uicdn.toast.com/editor/latest/toastui-editor.min.css');
$this->include_script('markdown_editor.js');
return $args;
}
}