fxcjahid / laravel-editor-js-html
Package converts editorjs blocks into html.
Installs: 38
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Language:Blade
Type:package
Requires
- php: ^7.0||^8.0
- airmanbzh/php-html-generator: ^1.0.2
- fxcjahid/laravel-table-of-content: ^2.0
- guzzlehttp/guzzle: ^6.3|7.*
README
Laravel Editor JS Html
This package conver EditorJs to pure Html
Install
- Install package
composer require fxcjahid/Laravel-editor-js-html
- Add provider in
config/app.php
fxcjahid\LaravelEditorJsHtml\LaravelEditorJsHtmlProvider::class,
Supported Blocks and tools:
- Heading
- Quote
- Image
- Simple Image (without backend requirement)
- Nested List
- Checklist
- Link embed
- Embeds ( YouTube, Twitch, Vimeo, Gfycat, Instagram, Twitter, etc )
- Table
- Delimiter
- Warning
- Code
- Raw HTML
- Attaches
- Marker
- Inline Code
See the 😎 Awesome Editor.js list for more tools.
Suggest
Usage
Convert blocks into HTML
use Fxcjahid\LaravelEditorJsHtml\BlocksManager; $blocksManager = new BlocksManager($data); $html = $blocksManager->renderHtml(); echo $html