Verify that the OpenDocument writer uses predefined list, paragraph, and text styles instead of generating per-instance automatic styles. ``` % pandoc -t opendocument - one - two 1. ordered one 2. ordered two Some *italic*, **bold**, ~~strike~~, and `code`. > A block quote. Final paragraph. ^D one two ordered one ordered two Some italic, bold, strike, and code. A block quote. Final paragraph. ``` A non-default ordered list (start value other than 1, or non-decimal format) generates a single named override style, not one per instance. ``` % pandoc -t opendocument A) upper-alpha one B) upper-alpha two 5. start at five 6. and continue ^D upper-alpha one upper-alpha two start at five and continue ``` A nested block quote uses the predefined `Quotations` style for the outer paragraph, and inherits indent from it for the inner paragraph. ``` % pandoc -t opendocument > First. > > > Nested. ^D First. Nested. ```