frontkom / fs-info-transformer
Transform data coming from FS to regular and usable HTML
0.0.1
2024-10-23 13:02 UTC
Requires (Dev)
- phpstan/phpstan: ^1.12
- phpunit/phpunit: ^9.0 || ^10.5
- slevomat/coding-standard: ^8.15
- squizlabs/php_codesniffer: ^3.10
This package is auto-updated.
Last update: 2024-10-23 13:06:24 UTC
README
Transform data coming from FS to regular and usable HTML
Installation
Install with composer.
composer require frontkom/fs-info-transformer
Usage
use Frontkom\FsInfoTransformer\Transformer; $transformer = new Transformer(); $text = 'Vi viser til <webLink><href>https://www.example.com</href><linkName>gjeldende forskrift og tilhørende retningslinjer.</linkName></webLink>'; $html = $transformer->transform($text); echo $html; // Will output // Vi viser til <a rel="nofollow" href="https://www.example.com">gjeldende forskrift og tilhørende retningslinjer.</a>
API
transform(string $text): string
Transforms the given text to HTML.
This method will run all the most common transformations on the text, including most of the ones below. For a direct link to read the implementation, see the method in the source code directly.
replaceEmptyParagraphs(string $text): string
processBulletedLists(string $text): string
processNumberedLists(string $text): string
replaceTags(string $data, $tag, $replacement_tag, $keep_self_closing_tags = false): string
processWeblinks(string $data, bool $nofollow = true): string
License
GPL-2.0-or-later