class Prawn::Table::Cell
def content_height
Returns the height of the bare content in the cell, excluding padding.
def content_height if defined?(@height) && @height # manually set return @height - padding_top - padding_bottom end natural_content_height end