'
diff --git a/_plugins/customblocks.rb b/_plugins/customblocks.rb
index b5111e43fb..690ae877e7 100644
--- a/_plugins/customblocks.rb
+++ b/_plugins/customblocks.rb
@@ -2,14 +2,14 @@ module Jekyll
class TipBlock < Liquid::Block
def render(context)
text = super
- '
Tip: ' + text + '
'
+ '
Tip: ' + text + '
'
end
end
class NoteBlock < Liquid::Block
def render(context)
text = super
- '
Note: ' + text + '
'
+ '
Note: ' + text + '
'
end
end
@@ -30,7 +30,7 @@ def render(context)
class DisclaimerBlock < Liquid::Block
def render(context)
text = super
- '
Disclaimer: ' + text + '
'
+ '
Disclaimer: ' + text + '
'
end
end