[IPython-dev] is markdown broken in latest ipython?

Matthias BUSSONNIER bussonniermatthias at gmail.com
Mon May 13 09:31:40 EDT 2013


Le 12 mai 2013 à 08:31, Zoltán Vörös a écrit :

> Hi all,
> 
> I have just pulled the master branch from git, and it seems to me that markdown rendering is broken. I used to have a short piece of script at the beginning of my notebooks, so that I can hide various fields.
> 
> <script type="text/javascript">
>     show=true;
>     function toggle(){
>         if (show){
>             $('div.input').hide();
>         }else{
>             $('div.input').show();
>         }
>         show = !show
>     }
> </script>
> <a href="javascript:toggle()" target="_self">toggle input</a>

The new marked parser replace the quotes in $("div.input") by their html escaped sequences: &39; same with simple quote.
Would you like to open a bug report to be able to follow when a fix is available ?

-- 
Matthias

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ipython-dev/attachments/20130513/b8018771/attachment.html>


More information about the IPython-dev mailing list