machy8/macdom-bundle

Macdom HTML Preprocessor bundle for Symfony framework.


Keywords
templating, minification, bundle, html, preprocessor, macdom, symfony-bundle
License
BSD-3-Clause

Documentation

Macdom Bundle

Macdom HTML Preprocessor bundle for Symfony Framework.

Installation

composer require machy8/macdom-bundle

Usage

use Macdom\Engine;

/**
 * @Route("/", name="homepage")
 */
public function homepage(Engine $macdom) : Response
{
    return new Response($macdom->compile('h1 Hello World!'));
}