mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-13 11:38:31 +08:00
b14e4f6aa2
- Textarea bug prevented us from typing in the markdown editor, almost consistently. Seems to be a chrome bug - Stop using textarea and use contenteditable instead via codemirror's inputStyle option. Had to use our fork of simplemde to be able to pass that option - Disable spellchecker also
25 lines
517 B
JSON
25 lines
517 B
JSON
{
|
|
"name": "composer-markdown",
|
|
"version": "0.1.0",
|
|
"main": "./lib/main",
|
|
"title": "Markdown (Experimental)",
|
|
"description": "Write emails using Markdown!",
|
|
"license": "GPL-3.0",
|
|
"icon": "./icon.png",
|
|
"engines": {
|
|
"nylas": "*"
|
|
},
|
|
"isOptional": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": ""
|
|
},
|
|
"windowTypes": {
|
|
"default": true,
|
|
"composer": true
|
|
},
|
|
"dependencies": {
|
|
"marked": "^0.3",
|
|
"simplemde": "jstejada/simplemde-markdown-editor#input-style-support"
|
|
}
|
|
}
|