Markdown Preview in txti

When EDITING a txti (txti.es/*/edit) in txti.es you should be able to preview your changes (a toggle preview button appears)

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Markdown Preview in txti
// @namespace    https://gist.github.com/AeonFr/f44a8b6f175d059f8328638a6a30ce4d
// @version      0.1
// @description  When EDITING a txti (txti.es/*/edit) in txti.es you should be able to preview your changes (a toggle preview button appears)
// @author       Francisco Cano
// @match        http://txti.es/*/edit
// @grant        none
// @run-at       document-end
// @require      https://cdnjs.cloudflare.com/ajax/libs/showdown/1.3.0/showdown.min.js
// ==/UserScript==

(function() {
    'use strict';
    function _(selector){
        return document.querySelector(selector);
    }
    window.addEventListener('load', function(){
        initMarkdownPreview();
    });
    var converter = false;
    function initMarkdownPreview(){
        if( _('#content-input') ){
            var elt = document.createElement('div'),
                converter =  new showdown.Converter();
            elt.id = 'content-preview';
            elt.style.display = 'none';
            _('#create-a-txti').insertBefore(elt, _('#content-input'));
            var contentToMarkdownPreviewer = function(){
                var result = converter.makeHtml(  _('#content-input').value );
                elt.innerHTML = result;
            };
            _('#content-input').addEventListener('keyup', contentToMarkdownPreviewer);
            // Fire the conversion the first time, when page is loaded
            contentToMarkdownPreviewer();
            var elt2 = document.createElement('div');
            elt2.innerHTML = '<a href="content-input" action="toggle-preview">Toggle Preview</a>';
            _('#create-a-txti').insertBefore(elt2, _('#content-preview'));
            elt2.addEventListener('click', function(e){
                e.preventDefault();
                if ( _('#content-input').style.display != 'none' ){
                    _('#content-input').style.display = 'none';
                    _('#content-preview').style.display = 'block';
                }else{
                    _('#content-input').style.display = 'block';
                    _('#content-preview').style.display = 'none';
                }
            });
        }
    }
})();