我将文字存储在Parse.com类型字符串的字段中。 文本由空格组成,例如行尾字符/换行符
在像paragraph.get('text')
这样的HTML中显示此文字时,新行字符会被删除。
如何在HTML中显示整个文本的格式?
答案 0 :(得分:1)
选项1:将文字放在两个预标签之间:
<pre>
Text in a pre element
is displayed in a fixed-width
font, and it preserves
both spaces and
line breaks
</pre>
选项2:使用正则表达式(大量示例)将换行符替换为&lt; br /&gt;标签