Skip to content
Christophe edited this page Apr 5, 2018 · 1 revision

Plugins & Events

render.js : javascript is being rendered. You can add here extra extern .js files or inline scripts

render.css : stylesheets is being rendered. You can add here extra extern .css files or inline css

render.content : the html content of the note is being rendered. Capturing this event will allow you to intervene in the html result of the note. Note : render.content receive only the html of the note, not the entire page html.

display.html : the page is being displayed. The $html parameter contains the entire page, not only the note.

markdown.read : the .md file has been read and not yet displayed. With markdown.read, you can add extra functionnalities like cleaning the markdown string, encrypting part, ... before the string is displayed or further processed.

markdown.save : the .md file is being saved.