We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63833c1 commit 34f32ffCopy full SHA for 34f32ff
README.md
@@ -24,9 +24,12 @@ require 'lib/Readability.inc.php';
24
$Readability = new Readability($html, $html_input_charset); // default charset is utf-8
25
$ReadabilityData = $Readability->getContent(); // throws an exception when no suitable content is found
26
27
+// You can see more params by var_dump($ReadabilityData);
28
echo "<h1>".$ReadabilityData['title']."</h1>";
29
echo $ReadabilityData['content'];
30
```
31
32
+
33
34
PS: For Node.js port, You can [[https://github.com/arrix/node-readability/|check this]].
35
0 commit comments