Merge "Respect comment internal whitespace in email"

This commit is contained in:
Dave Borowitz 2016-12-09 21:31:27 +00:00 committed by Gerrit Code Review
commit 0e93b82694
1 changed files with 6 additions and 1 deletions

View File

@ -63,9 +63,14 @@
padding: 0 10px;
{/let}
{let $pStyle kind="css"}
white-space: pre-wrap;
word-wrap: break-word;
{/let}
{foreach $block in $content}
{if $block.type == 'paragraph'}
<p>{$block.text}</p>
<p style="{$pStyle}">{$block.text}</p>
{elseif $block.type == 'quote'}
<blockquote style="{$blockquoteStyle}">
{call .WikiFormat}{param content: $block.quotedBlocks /}{/call}