# File lib/text/format.rb, line 118
118:     def ==(o)
119:       (@text          ==  o.text)           &&
120:       (@columns       ==  o.columns)        &&
121:       (@left_margin   ==  o.left_margin)    &&
122:       (@right_margin  ==  o.right_margin)   &&
123:       (@hard_margins  ==  o.hard_margins)   &&
124:       (@split_rules   ==  o.split_rules)    &&
125:       (@first_indent  ==  o.first_indent)   &&
126:       (@body_indent   ==  o.body_indent)    &&
127:       (@tag_text      ==  o.tag_text)       &&
128:       (@tabstop       ==  o.tabstop)        &&
129:       (@format_style  ==  o.format_style)   &&
130:       (@extra_space   ==  o.extra_space)    &&
131:       (@tag_paragraph ==  o.tag_paragraph)  &&
132:       (@nobreak       ==  o.nobreak)        &&
133:       (@abbreviations ==  o.abbreviations)  &&
134:       (@nobreak_regex ==  o.nobreak_regex)
135:     end