simplemde-markdown-editor with Angular
npm install ng2-simplemde

![Versions]()
![License]()
* install npm i ng2-simplemde --save
``typescript`
import { NgModule } from '@angular/core'
import { SimplemdeModule, SIMPLEMDE_CONFIG } from 'ng2-simplemde'
@NgModule({
imports: [
SimplemdeModule.forRoot({
provide: SIMPLEMDE_CONFIG,
// config options 1
useValue: $options1
})
],
bootstrap: [AppComponent]
})
export class AppModule { }
`html`
> 1. The final options is {...$options1, ...$options2}, Object.assign({}, $options1, $options2)element
> 2. The option is not usefulcodemirror
> 3. is option set for codemirror, see https://github.com/codemirror/CodeMirror
* you should add style-loader!css-loader in your webpack configstyle-loader!css-loader
* If you use angular-cli, you can add as pug-loader in https://github.com/angular/angular-cli/issues/1886.
* normal, it use import 'simplemde/dist/simplemde.min.css'`
* you can use a cdn`
import { SimplemdeModule, SIMPLEMDE_CONFIG } from 'ng2-simplemde/no-style'
and in index.html
```
* Bundles use don't support this