|
# File text/format.rb, line 108
108: def ==(o)
109: (@text == o.text) &&
110: (@columns == o.columns) &&
111: (@left_margin == o.left_margin) &&
112: (@right_margin == o.right_margin) &&
113: (@hard_margins == o.hard_margins) &&
114: (@split_rules == o.split_rules) &&
115: (@first_indent == o.first_indent) &&
116: (@body_indent == o.body_indent) &&
117: (@tag_text == o.tag_text) &&
118: (@tabstop == o.tabstop) &&
119: (@format_style == o.format_style) &&
120: (@extra_space == o.extra_space) &&
121: (@tag_paragraph == o.tag_paragraph) &&
122: (@nobreak == o.nobreak) &&
123: (@abbreviations == o.abbreviations) &&
124: (@nobreak_regex == o.nobreak_regex)
125: end
|