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.92k stars 1.12k forks source link

[ASK] Make font-awesome icon offline #554

Open noxymon opened 7 years ago

noxymon commented 7 years ago

is it possible to make the editor access font-awesome locally ?

xralphack commented 7 years ago

I just download font-awesome 4.7.0 by myself

include font-awesome.min.css by link tag

    var simplemde = new SimpleMDE({ 
        element: document.getElementById("markdown-editor"),
        autoDownloadFontAwesome: false
    });

works for me now

suhailkc commented 4 years ago

@xralphack

    var simplemde = new SimpleMDE({ 
        element: document.getElementById("markdown-editor"),
        autoDownloadFontAwesome: false
    });

I have tried this. but the font-awesome still working. (font-awesome still loading from online. I did download and linked CSS).

Why autoDownloadFontAwesome: false not working?