PHP code example of edd-g / editorjs-simple-html-parser
1. Go to this page and download the library: Download edd-g/editorjs-simple-html-parser library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
edd-g / editorjs-simple-html-parser example snippets
use Durlecode\EJSParser\Parser;
$html = Parser::parse($data)->toHtml();
use Durlecode\EJSParser\Parser;
$parser = new Parser($data);
$parser->setPrefix("cat");
$parsed = $parser->toHtml();
use Durlecode\EJSParser\HtmlParser;
$parser = new HtmlParser($html);
$blocks = $parser->toBlocks();
header("Content-Type: application/json");
echo $blocks;
use Durlecode\EJSParser\HtmlParser;
$parser = new HtmlParser($html);
$parser->setPrefix("cat");
$blocks = $parser->toBlocks();
use Durlecode\EJSParser\HtmlParser;
$parser = new HtmlParser($html);
$parser->setTime("1703787424242");
$parser->setVersion("2.28.8");
$blocks = $parser->toBlocks();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.