You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
862B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <title>Editor</title>
  7. <style type="text/css" media="screen">
  8. body {
  9. overflow: hidden;
  10. }
  11. #editor {
  12. margin: 0;
  13. position: absolute;
  14. top: 0;
  15. bottom: 0;
  16. left: 0;
  17. right: 0;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <pre id="editor"></pre>
  23. <script src="src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
  24. <script>
  25. var editor = ace.edit("editor");
  26. editor.setOptions({
  27. mode: "ace/mode/markdown",
  28. theme: "ace/theme/twilight",
  29. showPrintMargin: false,
  30. wrap: true,
  31. indentedSoftWrap: true,
  32. showFoldWidgets: true,
  33. showLineNumbers: true,
  34. autoScrollEditorIntoView: true
  35. })
  36. </script>
  37. </body>
  38. </html>