Embed javascript in markdown
        Posted  
        
            by Paul Tarjan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Paul Tarjan
        
        
        
        Published on 2010-05-02T17:58:05Z
        Indexed on 
            2010/05/02
            18:08 UTC
        
        
        Read the original article
        Hit count: 228
        
I'm using the Maruku markdown processor. I'd like this
*blah* blah "blah" in [markdown](blah)
<script src="code.jquery.com/jquery-1.4.2.min.js"></script>
<script>
...do stuff...
</script>
but it complains when I render it with a multitude of errors. The first one being
 ___________________________________________________________________________
| Maruku tells you:
+---------------------------------------------------------------------------
| Could you please format this better?
| I see that "<script type='text/javascript'>" is left after the raw HTML.
| At line 31
|   raw_html     |<script src='http://code.jquery.com/jquery-1.4.2.min.js' /><script type='text/javascript'>|
|       text --> |//<![CDATA[|
and then the rest seems like the parser is going nuts. Then it renders the javascript into a div on the page. I've tried making it a CDATA block and extra spacing between the jquery and my script.
Help?
© Stack Overflow or respective owner