method
plain_text_for_blockquote_node
v7.2.3 -
Show latest stable
- Class:
ActionText::PlainTextConversion
plain_text_for_blockquote_node(node, index)private
No documentation available.
# File actiontext/lib/action_text/plain_text_conversion.rb, line 66
def plain_text_for_blockquote_node(node, index)
text = plain_text_for_block(node)
return "ââ" if text.blank?
text = text.dup
text.insert(text.rindex(/\S/) + 1, "â")
text.insert(text.index(/\S/), "â")
text
end