sparksuite / simplemde-markdown-editor

A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.
https://simplemde.com
MIT License
9.79k stars 1.12k forks source link

How to change guide link? #705

Closed chichur closed 5 years ago

chichur commented 6 years ago
{
    name: "guide",
    action: https://guides.github.com/features/mastering-markdown/,
    className: "fa fa-question-circle",
    title: "Справка",
},

this example not work.

MisaZ10 commented 5 years ago
{
    name: "guide",
    action: function openlink() {
       var win = window.open('https://google.com', '_blank');
       win.focus();
    },
    className: "fa fa-question-circle",
    title: "Справка",
}

This work for you ?

chichur commented 5 years ago

Yes. Thank you. :+1: