/**
  * This method is called by the frontend rendering hook contentPostProc->output
  *
  * @param array $parameters
  * @param \tslib_fe $typoScriptFrontendController
  */
 public function parseFE(array &$parameters, $typoScriptFrontendController)
 {
     // Parsing the content if not explicitly disabled
     if ($this->requestContext->isUrlRewritingEnabled()) {
         $typoScriptFrontendController->content = $this->getHtmlParser()->parse($typoScriptFrontendController->content);
     }
 }