```
% pandoc -f latex -t native -s
\documentclass{article}

\begin{document}
    \title{Document title}
    \author{

Me

}
\maketitle
\end{document}
^D
Pandoc
  Meta
    { unMeta =
        fromList
          [ ( "author" , MetaList [ MetaInlines [ Str "Me" ] ] )
          , ( "title"
            , MetaInlines [ Str "Document" , Space , Str "title" ]
            )
          ]
    }
  []
```