.. include:: /Includes.rst.txt .. _pageparser: PageParser ========== The PageParser is responsible for parsing the frontend response and transforming it into a JSON object. The default parsers are: * **body**: Has the complete body of the page. * **title**: Contains the title of the page. * **metadata**: Contains all the metatags of the page, structured by name and content. * **locale**: Contains the locale of the page. * **url**: Contains the URL of the page. * **favicon**: Contains the URL of the favicon of the page. Adding your own parser ---------------------- If you want to add your own parser, you can do so by adding a class which implements the `ParserInterface`: .. code-block:: php