Pregunta

En este momento, mientras escribo esto, está la vista previa debajo del editor. Me gustaría hacer algo similar. ¿Cómo hace esto el desbordamiento de pila?

¿Fue útil?

Solución

Usan un editor HTML llamado Editor de Markdown de WMD.

Otros consejos

$(function(){
    // whenever the text in the editor box changes:
    $("#editorTextArea").change(function(){
        // add the text to the preview box below
        // this certainly involves some formatting/marking up of the text
        // but this is good enough for illustrative purposes
        $("#previewBox").val(this.value);
    });
});
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top