MathProg CodeMirror

HTML

<script src="//www3.nd.edu/~jeff/mathprog/js/codemirror.js"></script>
<link rel="stylesheet" href="//www3.nd.edu/~jeff/mathprog/css/codemirror.css">
<script src="//www3.nd.edu/~jeff/mathprog/js/models/mathprog.js"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<div class="container">
  <div class="row">
    <div class="col-xs-12 col-md-4">
      <textarea id='editor'>saas
      asdasd
      asdad</textarea>
    </div>
  </div>
</div>

JavaScript

var modelEditor = CodeMirror.fromTextArea(document.getElementById("editor"), {
    lineNumbers: true,
    lineWrapping: true
});