https://github.com/kittn/generator-kittn
The Yeoman Kittn Generator
https://github.com/kittn/generator-kittn
craft css es6 gulp html kitten postcss prototype sass twig webpack wordpress yeoman-generator
Last synced: 10 days ago
JSON representation
The Yeoman Kittn Generator
- Host: GitHub
- URL: https://github.com/kittn/generator-kittn
- Owner: kittn
- License: mit
- Created: 2014-07-22T10:01:35.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-03-11T07:54:09.000Z (about 6 years ago)
- Last Synced: 2025-04-13T13:03:58.142Z (10 days ago)
- Topics: craft, css, es6, gulp, html, kitten, postcss, prototype, sass, twig, webpack, wordpress, yeoman-generator
- Language: PHP
- Homepage: http://kittn.de
- Size: 14.9 MB
- Stars: 62
- Watchers: 10
- Forks: 5
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
php-simple-html-dom-parser
==========================Version 1.5
Adaptation for Composer and PSR-0 of:
A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way!
Require PHP 5+.
Supports invalid HTML.
Find tags on an HTML page with selectors just like jQuery.
Extract contents from HTML in a single line.http://simplehtmldom.sourceforge.net/
Install
-------composer.phar
```json
"require": {
"sunra/php-simple-html-dom-parser": "v1.5.0"
}
```Usage
-----```php
use Sunra\PhpSimple\HtmlDomParser;...
$dom = HtmlDomParser::str_get_html( $str );
or
$dom = HtmlDomParser::file_get_html( $file_name );$elems = $dom->find($elem_name);
...```