Simplemde-markdown-editor: [ASK] Make font-awesome icon offline

Created on 25 Mar 2017  路  2Comments  路  Source: sparksuite/simplemde-markdown-editor

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

Most helpful comment

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

All 2 comments

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

@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?

Was this page helpful?
0 / 5 - 0 ratings