``` % pandoc -f docbook -t native --quiet 1 2 3 4 ^D [ Table ( "", [], [] ) ( Caption Nothing [] ) [ ( AlignDefault, ColWidthDefault ) , ( AlignDefault, ColWidthDefault ) , ( AlignDefault, ColWidthDefault ) , ( AlignDefault, ColWidthDefault ) ] ( TableHead ( "", [], [] ) [] ) [ TableBody ( "", [], [] ) ( RowHeadColumns 0 ) [] [ Row ( "", [], [] ) [ Cell ( "", [], [] ) AlignCenter ( RowSpan 1 ) ( ColSpan 1 ) [ Para [ Str "1" ] ] , Cell ( "", [], [] ) AlignLeft ( RowSpan 1 ) ( ColSpan 1 ) [ Para [ Str "2" ] ] , Cell ( "", [], [] ) AlignRight ( RowSpan 1 ) ( ColSpan 1 ) [ Para [ Str "3" ] ] , Cell ( "", [], [] ) AlignDefault ( RowSpan 1 ) ( ColSpan 1 ) [ Para [ Str "4" ] ] ] ] ] ( TableFoot ( "", [], [] ) [] ) ] ``` ``` % pandoc -f native -t opendocument --quiet [Table ("",[],[]) (Caption Nothing []) [(AlignDefault,ColWidthDefault) ,(AlignDefault,ColWidthDefault) ,(AlignDefault,ColWidthDefault) ,(AlignDefault,ColWidthDefault)] (TableHead ("",[],[]) []) [(TableBody ("",[],[]) (RowHeadColumns 0) [] [Row ("",[],[]) [Cell ("",[],[]) AlignCenter (RowSpan 1) (ColSpan 1) [Para [Str "1"]] ,Cell ("",[],[]) AlignLeft (RowSpan 1) (ColSpan 1) [Para [Str "2"]] ,Cell ("",[],[]) AlignRight (RowSpan 1) (ColSpan 1) [Para [Str "3"]] ,Cell ("",[],[]) AlignDefault (RowSpan 1) (ColSpan 1) [Para [Str "4"]]]])] (TableFoot ("",[],[]) [])] ^D 1 2 3 4 ```