Real-time Markdown W/ Markdown three way merge
npm install ng-realmark

> Live example here
npm install ng-realmark --saveStep 2: Reference in main NgModule
```
import {RealMarkModule} from "ng-realmark/ng-realmark";
@NgModule({
imports: [ …
RealMarkModule.forRoot({flavor: 'github'}), // or original or vanilla
…
]…angular.cli
Step 3: Add stylesheet to ` `
"styles": [
...
"../node_modules/ng-realmark/realmark.css"
...
],
`
Automatic code block wrapping can be achieve be adding the [codeBlock]=“‘js’” attribute. E.g.
`
`
$3
`
Title to be displayed
`
Automatic code block wrapping can be achieve be adding the [codeBlock]=“‘js’” attribute. E.g.
`
Title to be displayed
``Please install Node.js and npm if they are not already installed on your computer.
> Verify that you are running at least node v6.x.x and npm 3.x.x by running node -v and npm -v in a terminal / console window. Older versions may produce errors.