I'm using the Maruku markdown processor. I'd like this

*blah* blah "blah" in [markdown](blah)

<script src="http://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?

link|improve this question

feedback

4 Answers

Wild guess: there shouldn't be single quotes in your <script> tags. As far as I know, that's nonstandard, and if so, then Markdown wouldn't be required to recognise it.

Edit: The example they give on their site shows an empty <script> tag containing a newline. Maybe that's it?

link|improve this answer
it is markdown that is creating that... my actual code is <script src="http://code.jquery.com/jquery-1.4.2.min.js"></script> <script type="text/javascript"> – Paul Tarjan May 2 '10 at 20:18
feedback

Markdown supports inline XHTML but not Javascript.

link|improve this answer
feedback

I had this same problem, but I managed to get JavaScript to appear in my code by putting a newline after the opening tag.

link|improve this answer
Legend, thanks so much. This works fine +1 – Kezzer Apr 3 at 15:33
feedback

To my experience, markdown will outpus javascript text as plain text as long as you remove the code formatting that may confuse markdown.

  1. remove comments from javascript, as /* ... */ is translated to < em>
  2. remove the space indent in the front of each line. < p> may be inserted according to your indentation.

Basically what I do is to review the generated html and find out what extra tags are inserted in between my javascript code by markdown. And remove the formatting that generates the extra tag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.