File: paragraph.php

package info (click to toggle)
php-nunomaduro-termwind 2.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,172 kB
  • sloc: php: 3,969; makefile: 34
file content (9 lines) | stat: -rw-r--r-- 153 bytes parent folder | download
1
2
3
4
5
6
7
8
9
<?php

use function Termwind\parse;

it('renders the element', function () {
    $html = parse('<p>text</p>');

    expect($html)->toBe("\ntext\n");
});