PHP code example of visuellverstehen / markdown-to-html

1. Go to this page and download the library: Download visuellverstehen/markdown-to-html 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/ */

    

visuellverstehen / markdown-to-html example snippets


use VV\Markdown\Facades\Markdown;

Markdown::parse($yourContent); // The output will be HTML

'default' => [
    'h1' => 'text-2xl',
    'a'  => 'link hover:text-blue',
    'p' => 'mb-5',
    'li p' => 'mb-2 ml-4',
],
 
// config/markdown.php
'styles' => [
    'default' => [
        'h1' => 'text-2xl',
        'p' => 'mb-2',
    ],
    'wiki' => [
        'h1' => 'text-4xl',
        'p' => 'mb-8',
    ],
    ...
 
Markdown::style('wiki')->parse($yourContent);
$ php artisan vendor:publish
config/markdown.php