PHP code example of czukowski / markdown-tables

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

    

czukowski / markdown-tables example snippets


use Cz\Markdown;

$markdownWithRSTTables = new MarkdownWithRSTTables;
$githubMarkdownWithRSTTables = new GithubMarkdownWithRSTTables;
$markdownExtraWithRSTTables = new MarkdownExtraWithRSTTables;

// Set default encoding to UTF-8.
mb_internal_encoding('UTF-8');