fixed email markdown
This commit is contained in:
parent
21f3da2358
commit
d97a9aa4a4
6 changed files with 22 additions and 4 deletions
|
@ -1,4 +1,6 @@
|
||||||
class Notify < ActionMailer::Base
|
class Notify < ActionMailer::Base
|
||||||
|
add_template_helper ApplicationHelper
|
||||||
|
|
||||||
default_url_options[:host] = EMAIL_OPTS["host"]
|
default_url_options[:host] = EMAIL_OPTS["host"]
|
||||||
default_url_options[:protocol] = -> { EMAIL_OPTS["protocol"] ? EMAIL_OPTS["protocol"] : "http" }.call
|
default_url_options[:protocol] = -> { EMAIL_OPTS["protocol"] ? EMAIL_OPTS["protocol"] : "http" }.call
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,6 @@
|
||||||
%tr
|
%tr
|
||||||
%td{:valign => "top"}
|
%td{:valign => "top"}
|
||||||
%div{ :style => "background:#f5f5f5; padding:20px;border:1px solid #ddd" }
|
%div{ :style => "background:#f5f5f5; padding:20px;border:1px solid #ddd" }
|
||||||
= RDiscount.new(@note.note, :autolink, :no_pseudo_protocols, :safelink, :smart, :filter_html).to_html.html_safe
|
= markdown(@note.note)
|
||||||
%td{:style => "font-size: 1px; line-height: 1px;", :width => "21"}
|
%td{:style => "font-size: 1px; line-height: 1px;", :width => "21"}
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,6 @@
|
||||||
%tr
|
%tr
|
||||||
%td{:valign => "top"}
|
%td{:valign => "top"}
|
||||||
%div{ :style => "background:#f5f5f5; padding:20px;border:1px solid #ddd" }
|
%div{ :style => "background:#f5f5f5; padding:20px;border:1px solid #ddd" }
|
||||||
= RDiscount.new(@note.note, :autolink, :no_pseudo_protocols, :safelink, :smart, :filter_html).to_html.html_safe
|
= markdown(@note.note)
|
||||||
%td{:style => "font-size: 1px; line-height: 1px;", :width => "21"}
|
%td{:style => "font-size: 1px; line-height: 1px;", :width => "21"}
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,6 @@
|
||||||
%tr
|
%tr
|
||||||
%td{:valign => "top"}
|
%td{:valign => "top"}
|
||||||
%div{ :style => "background:#f5f5f5; padding:20px;border:1px solid #ddd" }
|
%div{ :style => "background:#f5f5f5; padding:20px;border:1px solid #ddd" }
|
||||||
= RDiscount.new(@note.note, :autolink, :no_pseudo_protocols, :safelink, :smart, :filter_html).to_html.html_safe
|
= markdown(@note.note)
|
||||||
%td{:style => "font-size: 1px; line-height: 1px;", :width => "21"}
|
%td{:style => "font-size: 1px; line-height: 1px;", :width => "21"}
|
||||||
|
|
||||||
|
|
|
@ -18,5 +18,5 @@
|
||||||
%tr
|
%tr
|
||||||
%td{:valign => "top"}
|
%td{:valign => "top"}
|
||||||
%div{ :style => "background:#f5f5f5; padding:20px;border:1px solid #ddd" }
|
%div{ :style => "background:#f5f5f5; padding:20px;border:1px solid #ddd" }
|
||||||
= RDiscount.new(@note.note, :autolink, :no_pseudo_protocols, :safelink, :smart, :filter_html).to_html.html_safe
|
= markdown(@note.note)
|
||||||
%td{:style => "font-size: 1px; line-height: 1px;", :width => "21"}
|
%td{:style => "font-size: 1px; line-height: 1px;", :width => "21"}
|
||||||
|
|
|
@ -12,6 +12,10 @@ class Project
|
||||||
def path_to_repo
|
def path_to_repo
|
||||||
File.join(Rails.root, "tmp", "tests", path)
|
File.join(Rails.root, "tmp", "tests", path)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def satellite
|
||||||
|
@satellite ||= FakeSatellite.new
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class Key
|
class Key
|
||||||
|
@ -29,3 +33,15 @@ class UsersProject
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class FakeSatellite
|
||||||
|
def exists?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create
|
||||||
|
true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue