#{escape_html(quote.gsub("\n",
- ''))}
)
+ return '' if quote.nil? # Return an empty string if quote is nil
+
+ %(#{escape_html(quote.gsub("\n", ''))}
)
end
def block_code(code, _language)