1
0
mirror of https://github.com/meineerde/holgerjust.de.git synced 2025-10-17 17:01:01 +00:00

Extend markdown helper to also render single lines

This commit is contained in:
Holger Just 2015-12-06 14:03:14 +01:00
parent 78e1821c22
commit a8982fb69e

View File

@ -3,7 +3,7 @@ helpers do
@_out_buf << content_tag(:figure, figure_options) do
[
markdown(&block),
content_tag(:figcaption, markdown(caption), caption_options)
content_tag(:figcaption, markdown(caption, true), caption_options)
].inject(&:concat)
end
end
@ -12,9 +12,19 @@ helpers do
str.unpack("U*").map { |c| "&##{c};"}.join
end
def markdown(source=nil, &block)
def markdown(source=nil, single_line = false, &block)
source = capture(&block) if block_given?
Tilt['markdown'].new{ source }.render
html = Tilt['markdown'].new{ source }.render
if single_line
doc = Nokogiri::HTML::DocumentFragment.parse(html)
doc.search('p').each do |node|
node.replace node.children
end
html = doc.to_html
end
html.strip
end
end