# `readers`: Format Readers (source text -> typed Doc) ```{py:currentmodule} myform.readers ``` `base` defines the `Reader` protocol/registry and the shared markdown engine builder; `myst` and `gfm` are the launch readers, both thin declarations over the markdown pipeline. The optional wikitext frontend delegates translation to `wikiparse` before reusing the MyST reader; the heavy dependency is imported only when a wikitext read is requested. Importing this package registers all readers. ```{eval-rst} .. automodule:: myform.readers :members: :imported-members: ```