add plain text support,keep markdown and plain text in readme

This commit is contained in:
Saito 2011-12-13 19:25:58 +08:00
parent 3dc94ba8eb
commit 713802fdf3
1 changed files with 5 additions and 2 deletions

View File

@ -35,11 +35,14 @@
- contents.select{ |i| i.is_a?(Grit::Blob)}.each do |content| - contents.select{ |i| i.is_a?(Grit::Blob)}.each do |content|
= render :partial => "refs/tree_item", :locals => { :content => content } = render :partial => "refs/tree_item", :locals => { :content => content }
- if content = contents.select{ |c| c.is_a?(Grit::Blob) and c.name =~ /^readme\.(md|markdown)$/i }.first - if content = contents.select{ |c| c.is_a?(Grit::Blob) and c.name =~ /^readme/i }.first
#tree-readme-holder #tree-readme-holder
%h3= content.name %h3= content.name
.readme .readme
= markdown(encode content.data) - if content.name =~ /\.(md|markdown)$/i
= markdown(encode content.data)
- else
= simple_format(encode content.data)
:javascript :javascript
$(function(){ $(function(){