Search code examples
javascriptstringdojoline-breaksgfx

Encoding a line break in a string without using HTML


Is there a way to encode a line break into a string without using any HTML entities or tags? Specifically, I would like a string that I pass into the dojox.gfx renderer to display a line break.


Solution

  • You can escape it with \n or \u000A, see:

    How do I break a string across more than one line of code in JavaScript?