How do I convert HTML textarea (multiline) to support db.StringProperty() (without the multiline)?
I have try string.replace("\n", "<br>") but the problem is when I insert this to javascript array it give me problem.
My code as following:
class Anything(db.Model):
Str_A = db.StringProperty()
...
anything = Anything.all()
template_values = { 'anything ': anything }
path = os.path.join(os.path.dirname(__file__), 'main.html')
self.response.out.write(template.render(path, template_values))
In the Javascript
var Str_A = [];
{% for a in anything %}
Str_A.push("{{ anything.Str_A }}"); /* This line problem */
{% endfor %}