Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/machy8/macdom-bundle
- Owner: Machy8
- License: bsd-3-clause
- Created: 2018-02-01T20:13:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-01T20:31:25.000Z (almost 7 years ago)
- Last Synced: 2024-11-10T20:35:58.274Z (about 2 months ago)
- Topics: html, macdom, preprocessor, symfony-bundle
- Language: PHP
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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!'));
}
````