Skip to content
Extraits de code Groupes Projets
Valider d19353ed rédigé par danielvincent's avatar danielvincent
Parcourir les fichiers

added newline support to markdownify

parent 6353f5f0
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -165,7 +165,7 @@ module ApplicationHelper ...@@ -165,7 +165,7 @@ module ApplicationHelper
def markdownify(message, options = {}) def markdownify(message, options = {})
message = h(message).html_safe message = h(message).html_safe
[:autolinks, :youtube, :emphasis, :links].each do |k| [:autolinks, :youtube, :emphasis, :links, :newlines].each do |k|
if !options.has_key?(k) if !options.has_key?(k)
options[k] = true options[k] = true
end end
...@@ -231,6 +231,10 @@ module ApplicationHelper ...@@ -231,6 +231,10 @@ module ApplicationHelper
end end
end end
if options[:newlines]
message.gsub!(/\n+/, '<br />')
end
return message return message
end end
......
...@@ -202,6 +202,14 @@ describe ApplicationHelper do ...@@ -202,6 +202,14 @@ describe ApplicationHelper do
end end
end end
describe "newlines" do
it 'generates breaklines' do
message = "These\nare\nsome\nnew\nlines"
res = markdownify(message)
res.should == "These<br /\>are<br /\>some<br /\>new<br /\>lines"
end
end
context 'performance' do context 'performance' do
before do before do
@message = "HHello,Hello_, I _am a strong robot.*Hello, I am *a strong robot.Hello, I am a strong robot.Hello, I am a strong robot.Hello, I am a strong robot.Hello, I am a **strong robot.Hello, I am _a _strong *robot**.Hello*, I am a strong " @message = "HHello,Hello_, I _am a strong robot.*Hello, I am *a strong robot.Hello, I am a strong robot.Hello, I am a strong robot.Hello, I am a strong robot.Hello, I am a **strong robot.Hello, I am _a _strong *robot**.Hello*, I am a strong "
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter