mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
21 lines
717 B
CoffeeScript
21 lines
717 B
CoffeeScript
# Markdown Editor
|
|
# Last Revised: April 23, 2015 by Ben Gotow
|
|
#
|
|
# Markdown editor is a simple React component that allows you to type your
|
|
# emails in markdown and see the live preview of your email in html
|
|
#
|
|
{ExtensionRegistry, ComponentRegistry} = require 'nylas-exports'
|
|
MarkdownEditor = require './markdown-editor'
|
|
MarkdownComposerExtension = require './markdown-composer-extension'
|
|
|
|
module.exports =
|
|
activate: ->
|
|
ComponentRegistry.register MarkdownEditor,
|
|
role: 'Composer:Editor'
|
|
ExtensionRegistry.Composer.register(MarkdownComposerExtension)
|
|
|
|
serialize: ->
|
|
|
|
deactivate: ->
|
|
ComponentRegistry.unregister(MarkdownEditor)
|
|
ExtensionRegistry.Composer.unregister(MarkdownComposerExtension)
|