irelic/readability-laravel

A Laravel package to extract readable text from HTML.

2.1.0 2017-12-04 20:39 UTC

This package is auto-updated.

Last update: 2024-05-10 16:32:48 UTC


README

A Laravel package to extract readable text from HTML.
This package is actually a wrapper class of feelinglucky/php-readability.

Installation

Execute composer command.

composer require irelic/readability-laravel

Set the service provider in app.php

'providers' => [
    Sukohi\LaravelReadability\LaravelReadabilityServiceProvider::class
]  

and alias.

'aliases' => [
		'LaravelReadability' => Sukohi\LaravelReadability\Facades\LaravelReadability::class
]

Basic Usage

$readability = \LaravelReadability::make($html);

try {

    $data = $readability->getContent();
    dd($data)

} catch (\Exception $e) {

    // Content not found

}

with Encoding

$readability = \LaravelReadability::make($html, 'Shift_JIS');

License

This package is licensed under the MIT License.
Copyright 2016 Sukohi Kuhoh