From 659accf69e5f8cc519d3f1b148f451f8da2f3cae Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Mon, 27 Oct 2014 17:39:24 -0700 Subject: [PATCH] Add event for Markdown cell rendered --- IPython/html/static/notebook/js/textcell.js | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/html/static/notebook/js/textcell.js b/IPython/html/static/notebook/js/textcell.js index 89f112f96..f1fcf114c 100644 --- a/IPython/html/static/notebook/js/textcell.js +++ b/IPython/html/static/notebook/js/textcell.js @@ -242,6 +242,7 @@ define([ html.find("a[href]").not('[href^="#"]').attr("target", "_blank"); this.set_rendered(html); this.typeset(); + this.events.trigger("rendered.MarkdownCell", {cell: this}) } return cont; };