You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add `getFullPageHtml()` (#14)
`getFullPageHtml()` doesn't remove HEAD & BODY and preserve inline styles while still sanitizing what it's supposed to be sanitized.
Can configure the sanitizer as a standalone object to sanitize arbitr…
…ary strings too (#12)
For example:
```php
$sanitizer = new SensitiveValueSanitizer();
$sanitizer->addSanitization('🍍', '🍌');
$string = $sanitizer->sanitize('🍍🍕');
// [...]
$phpInfo = new PhpInfo($sanitizer);
$html = $phpInfo->getHtml();
```