**Explain the problem.** I get this: ``` $ pandoc -s --shift-heading-level-by=-1 -f djot -t native # hi ^D Pandoc Meta { unMeta = fromList [] } [ Div ( "hi" , [ "section" ] , [] ) [ Para [ Str "hi" ] ] ] ``` I expected it to match this, as documented: ``` $ pandoc -s --shift-heading-level-by=-1 -f markdown -t native # hi ^D Pandoc Meta { unMeta = fromList [ ( "title" , MetaInlines [ Str "hi" ] ) ] } [] ``` **Pandoc version?** pandoc 3.6 on OpenBSD -current