# File lib/text/format.rb, line 188
188:   def ==(o)
189:     (@text                  == o.text)                  and
190:     (@columns               == o.columns)               and
191:     (@left_margin           == o.left_margin)           and
192:     (@right_margin          == o.right_margin)          and
193:     (@hard_margins          == o.hard_margins)          and
194:     (@split_rules           == o.split_rules)           and
195:     (@first_indent          == o.first_indent)          and
196:     (@body_indent           == o.body_indent)           and
197:     (@tag_text              == o.tag_text)              and
198:     (@tabstop               == o.tabstop)               and
199:     (@format_style          == o.format_style)          and
200:     (@extra_space           == o.extra_space)           and
201:     (@tag_paragraph         == o.tag_paragraph)         and
202:     (@nobreak               == o.nobreak)               and
203:     (@terminal_punctuation  == o.terminal_punctuation)  and
204:     (@terminal_quotes       == o.terminal_quotes)       and
205:     (@abbreviations         == o.abbreviations)         and
206:     (@nobreak_regex         == o.nobreak_regex)
207:   end