瀏覽代碼

Paragraphs instead of one big thing with line breaks.

pull/24/head
Ben Kurtovic 12 年之前
父節點
當前提交
4c43629020
共有 2 個檔案被更改,包括 3 行新增3 行删除
  1. +2
    -2
      pages/copyvios.mako
  2. +1
    -1
      toolserver/copyvios/highlighter.py

+ 2
- 2
pages/copyvios.mako 查看文件

@@ -122,8 +122,8 @@
</ul>
<table id="cv-chain-table">
<tr>
<td>Article: <div class="cv-chain-detail"><p>${highlight_delta(result.article_chain, result.delta_chain)}</p></div></td>
<td>Source: <div class="cv-chain-detail"><p>${highlight_delta(result.source_chain, result.delta_chain)}</p></div></td>
<td>Article: <div class="cv-chain-detail">${highlight_delta(result.article_chain, result.delta_chain)}</div></td>
<td>Source: <div class="cv-chain-detail">${highlight_delta(result.source_chain, result.delta_chain)}</div></td>
</tr>
</table>
</div>


+ 1
- 1
toolserver/copyvios/highlighter.py 查看文件

@@ -40,7 +40,7 @@ def highlight_delta(context, chain, delta):
prev = sword
processed.append(u" ".join(processed_words))
i += 1
return u"<br /><br />".join(processed)
return u"<p>" + u"</p>\n<p>".join(processed) + u"</p>"

def _highlight_word(word, before, after, is_first, is_last):
if before and after:


Loading…
取消
儲存