/**
* Load a renderer
*
* @param string $type The renderer type
*
* @return RendererInterface
*
* @since 4.0.0
* @throws \RuntimeException
*/
public function loadRenderer($type)
{
// Need to force everything to go to the HTML renderers or we duplicate all the things
return $this->factory->createRenderer($this, $type, 'html');
}