MathJax WMD-markdown updates only on alternate keystrokes

195 Views Asked by At

I am trying to get MatJax and Markdown work together, by using almost standard code I was able to get it working but now I am facing a weird issue. My WMD preview is updated only on alternate keystrokes...!!

The javascript to init WMD is as follow

Preview.Init();

    (function() {
        var converter1 = Markdown.getSanitizingConverter();
        var editor1 = new Markdown.Editor(converter1);
        converter1.hooks.chain("postConversion", function(text) {   
            Preview.CreatePreview();
            return text; 
        });
        editor1.hooks.set("insertImageDialog", function(callback) {
            setTimeout(function() {
                $('#uploadmodal').modal({
                    keyboard : true,
                    backdrop:false
                });
                fileCallback = callback
            }, 500);
            return true; // tell the editor that we'll take care of getting the image url
        });
        editor1.run();
    })();

and

MathJAX integration is done by following code

var Preview = {
          delay: 150,        // delay after keystroke before updating

          preview: null,     // filled in by Init below
          buffer: null,      // filled in by Init below

          timeout: null,     // store setTimout id
          mjRunning: false,  // true when MathJax is processing
          oldText: null,     // used to check if an update is needed

          Init: function () {
            this.preview = document.getElementById("wmd-preview");
            this.buffer =   document.getElementById("MathBuffer");
          },

          SwapBuffers: function () {
            var buffer = this.preview, preview = this.buffer;
            this.buffer = buffer; this.preview = preview;
            buffer.style.visibility = "hidden"; buffer.style.position = "absolute";
            preview.style.position = ""; preview.style.visibility = "";
          },
          Update: function () {
            if (this.timeout) {clearTimeout(this.timeout)}
            this.timeout = setTimeout(this.callback,this.delay);
          },

          CreatePreview: function () {
            Preview.timeout = null;
            if (this.mjRunning) return;
            var text = document.getElementById("wmd-preview").innerHTML;
            if (text === this.oldtext) return;
            this.buffer.innerHTML = this.oldtext = text;
            this.mjRunning = true;
            MathJax.Hub.Queue(
              ["Typeset",MathJax.Hub,this.buffer],
              ["PreviewDone",this]
            );
          },
          PreviewDone: function () {
            this.mjRunning = false;
            this.SwapBuffers();
          }

        };

There is a demo page of the issue here http://easytha.com/question/demoQuestion

0

There are 0 best solutions below