I find the angular-medium-editor on Github but cannot figure out how to use it, here is my plunker. Please help me point out what's wrong there. Thank you.
<script data-require="[email protected]" src="https://code.angularjs.org/1.2.21/angular.js" data-semver="1.2.21"></script>
<script src="httpshttp://dfimg.com/medium-editor/dist/js/medium-editor.js"></script>
<script src="https://raw.githubusercontent.com/thijsw/angular-medium-editor/master/dist/angular-medium-editor.js"></script>
...
<h1 ng-model="name" medium-editor options='{"placeholder": "Enter a title", "disableToolbar": true, "forcePlainText": true, "disableReturn": true}'>name name</h1>
It turns out that I forget to specify the module dependencies, so just adding
"angular-medium-editor"
when declaring your module will do.