javascript - Content Tools add br instead of p when pressing the Enter -


content tools

i need when pressing "enter" instead tag p add tag br, how can implemented? thank in advance.

contentedit (which part of contenttools) provides setting allow configure behaviour of return key in text elements - prefer_line_breaks (see settings documentation here: http://getcontenttools.com/api/content-edit#settings).

so configure application insert line breaks (br tags) when enter key pressed need set prefer_line_breaks true so:

contentedit.prefer_line_breaks = true; 

Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

mapreduce - Resource manager does not transit to active state from standby -

serialization - Convert Any type in scala to Array[Byte] and back -