#Macdom for Nette HTML Abstraction markup language.
For more information see WIKI
##Requirements Nette version 2.3 or newer. ##Note to develop version May contain errors and bugs. Use Macdom from the Master branch for your projects. ##Installation 1 - Download the Macdom using composer:
composer require machy8/macdom:dev-develop
2 - Place the code bellow into your base presenter:
protected function createTemplate()
{
$template = parent::createTemplate();
$template->getLatte()->setLoader(new \Machy8\Macdom\Loader($this));
return $template;
}
##Examples See tests in the tests folder. Tests are also examples of how it all works. For more information see WIKI.