mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-04 07:14:02 +01:00
This adds a markdown editor that sends HTML to the server. It uses codemirror and some custom code to show a syntax highlighted textarea and some buttons to help editing (including a preview). Drafts get marked via an internal email header that causes the markdown editor to automatically start if a message composition is continued that was started using the markdown editor.
23 lines
570 B
JSON
23 lines
570 B
JSON
{
|
|
"name": "roundcube/markdown_editor",
|
|
"type": "roundcube-plugin",
|
|
"description": "An editor to compose emails in Markdown syntax, which gets converted into HTML before sending.",
|
|
"license": "GPL-3.0-or-later",
|
|
"version": "0.1",
|
|
"authors": [
|
|
{
|
|
"name": "Pablo Zimdahl",
|
|
"homepage": "https://github.com/pabzm"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.1.0",
|
|
"roundcube/plugin-installer": "~0.3.5"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"markdown_editor.php"
|
|
]
|
|
}
|
|
}
|