Hi, > > : Multi-TextElement in definition part of DescListItem(?). > > Maybe, He want to write more than one paragraph in definition. > > Yes. For example, in http://www.netlab.co.jp/ruby/man-1.4/Array.html > > > self[start, length] = val > > Replace the length items from start with val. If val is not an array, > the type of val will be converted into the Array using to_a. > > Example: > > ary = [1, 2, 3, 4, 5] > ary[0..2] = [0, 0] # Changed to [0, 0, 4, 5] > ary[1, 0] = [7] # Changed to [0, 7, 0, 4, 5] > [...] There is another problem in this Example. ListElement can't have VerbatimElement now. It is because I don't have good idea to tell Verbatim from TextElement. For Example: * First line of TextElement Second line of TextElement First line of Verbatim First line of another TextElement is not enough good. This may cause trouble under following condition. * First line of TextElement * Sub list This line is Verbatim? or TextElement? uum, How difficult!! --- Tosh