Desktop markdown wiki app. Built with node, Electron Framework and AngularJS.

note-edit.html 264B

123456789101112
  1. <div class="editor-container">
  2. <div ui-ace="{
  3. useWrapMode : true,
  4. showGutter: true,
  5. theme:'tomorrow_night_eighties',
  6. mode: 'markdown',
  7. firstLineNumber: 1,
  8. onLoad: aceLoaded,
  9. onChange: aceChanged
  10. }" ng-model="raw_data"></div>
  11. </div>