(refs #230)Fix markdown preview styles

This commit is contained in:
takezoe
2014-05-18 16:04:38 +09:00
parent 9ecc10ab21
commit f6eb2e2dc8

View File

@@ -54,20 +54,22 @@
@if(content.viewType == "text"){ @if(content.viewType == "text"){
@defining(pathList.reverse.head) { file => @defining(pathList.reverse.head) { file =>
@if(renderableSuffixes.find(suffix => file.toLowerCase.endsWith(suffix))) { @if(renderableSuffixes.find(suffix => file.toLowerCase.endsWith(suffix))) {
@renderMarkup(pathList, content.content.get, branch, repository, false, false) <div class="box-content markdown-body" style="border: none; padding-left: 16px; padding-right: 16px;">
@renderMarkup(pathList, content.content.get, branch, repository, false, false)
</div>
} else { } else {
<pre class="prettyprint linenums blob">@content.content.get</pre> <pre class="prettyprint linenums blob">@content.content.get</pre>
} }
} }
} }
@if(content.viewType == "image"){ @if(content.viewType == "image"){
<img src="?raw=true"/> <img src="?raw=true"/>
} }
@if(content.viewType == "large" || content.viewType == "binary"){ @if(content.viewType == "large" || content.viewType == "binary"){
<div style="text-align: center"> <div style="text-align: center">
<a href="?raw=true">View Raw</a><br> <a href="?raw=true">View Raw</a><br>
(Sorry about that, but we can't show files that are this big right now) (Sorry about that, but we can't show files that are this big right now)
</div> </div>
} }
</td> </td>
</tr> </tr>