Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/machy8/macdom-bundle

Macdom HTML Preprocessor bundle for Symfony Framework
https://github.com/machy8/macdom-bundle

html macdom preprocessor symfony-bundle

Last synced: about 2 months ago
JSON representation

Macdom HTML Preprocessor bundle for Symfony Framework

Awesome Lists containing this project

README

        

# Macdom Bundle
[Macdom HTML Preprocessor](https://github.com/Machy8/Macdom) bundle for Symfony Framework.

## Installation
````
composer require machy8/macdom-bundle
````

## Usage
````PHP
use Macdom\Engine;

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