i have string stored in python variables, and i am outputting a html that contains javascript, and the i need to create javascript variables.

for ex, in python

title = "What's your name?"

i use Cheetah to generate the html. Cheetah code:

var title = '$title';

how do i escape this correctly so that a correct javascript variable is created? actual html output needed:

var title = 'What\'s your name?';
link|improve this question

57% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You probably want JSON:

import simplejson as sj
print sj.dumps('What\'s your name?') # => '"What\'s your name?"'

Don't generate js with cheetah, there are libraries.

link|improve this answer
this works great! thanks a lot, can you tell what libraries are available that i can use? – kevin Nov 8 '09 at 0:47
THC4k thanks for this, when I tried this the output works correctly in python. but the actual html output from Cheetah does not have the escape character. do you know what is going on? – kevin Nov 8 '09 at 0:55
feedback

Either just do title = title.replace("'", "\\'") in Python before the title value gets to Cheetah, or add a custom filter to Cheetah for the purpose and invoke it in the template. Doing it on the Python side of things seems simpler, though.

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.