summaryrefslogtreecommitdiff
path: root/static/mde.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/mde.js')
-rw-r--r--static/mde.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/static/mde.js b/static/mde.js
deleted file mode 100644
index 7471110..0000000
--- a/static/mde.js
+++ /dev/null
@@ -1,20 +0,0 @@
-(function() {
- var textarea = document.getElementsByTagName("textarea")[0];
- var form = textarea.form;
- var container = document.createElement('div');
- /*container.innerHTML =
- "<p>I know it looks funny in the editor, but to set the page "+
- "title (what appears in the tab name/window bar), put this at "+
- "the top of the page:</p>\n"+
- "<pre>---\ntitle: \"Your Title Here\"\n---\n</pre>";*/
- form.insertBefore(container, textarea);
- container.appendChild(textarea);
-
- var simplemde = new SimpleMDE({
- autoDownloadFontAwesome: false,
- element: textarea,
- promptURLs: true,
- forceSync: true,
- showIcons: ["code", "table"],
- });
-})();