Skip to content

ubermanu/hyperhtml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hyperhtml

Tests

HTML elements abstraction for PHP.

Installation

composer require ubermanu/hyperhtml

Usage

<?php
use function Ubermanu\Hyperhtml\h;
echo h('p', 'Hello world!'); // <p>Hello world!</p>

Check out the documentation for more examples.