Skip to content

Instantly share code, notes, and snippets.

@jackmakiyama
Created October 24, 2014 17:12
Show Gist options
  • Save jackmakiyama/dd1ce84593c24f8545af to your computer and use it in GitHub Desktop.
Save jackmakiyama/dd1ce84593c24f8545af to your computer and use it in GitHub Desktop.
markdown ideia

Input:

<?php
$markdown = [
    '#' => 'Titulo teste',
    '##' => 'Subtitulo teste',
    '---',
    [
        '1.' => 'list 1',
        '2.' => 'list 2',
        '3.' => 'list 3',
        '4.' => 'list 4',
    ]
];

output:

# Titulo teste
## Subtitulo teste
---
1. list 1
2. list 2
3. list 3
4. list 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment