machy8/macdom-bundle

Macdom HTML Preprocessor bundle for Symfony framework.

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

v1.0.0 2018-02-01 20:24 UTC

This package is auto-updated.

Last update: 2024-04-11 13:30:52 UTC


README

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!'));
}