visuellverstehen / markdown-to-html
Installs: 1 453
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 6
Forks: 0
Open Issues: 3
Requires
- php: ^7.0|^8.0
- illuminate/support: ^7.0|^8.0|^9.0
- league/commonmark: ^1.5|^2.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.3
This package is auto-updated.
Last update: 2024-10-22 22:24:30 UTC
README
Installation
composer require visuellverstehen/markdown-to-html
Usage
There might be cases, if for example using TailwindCss, where you want to use custom classes to style your output.
Getting started
use VV\Markdown\Facades\Markdown; Markdown::parse($yourContent); // The output will be HTML
Configuration
First you will need to publish your vendor assets:
$ php artisan vendor:publish
Then choose the mardown option. this will create a config/markdown.php
file in your app that you can modify to set your configuration.
To add or change style sets, simply add or change an array with classes that should be added to the HTML tag.
'default' => [ 'h1' => 'text-2xl', 'a' => 'link hover:text-blue', 'p' => 'mb-5', 'li p' => 'mb-2 ml-4', ],
This example uses TailwindCSS, but you can use whatever kind of CSS you want.
Example Output
<h1 class="text-2xl">A headline</h1> <p class="mb-5">Some text</p> <ul> <li><p class="mb-2 ml-4">A list item</p></li> <li><p class="mb-2 ml-4">A list item</p></li> <li><p class="mb-2 ml-4"><a class="link hover:text-blue" href="#">Klick me</a></p></li> </ul> <p class="mb-5">Another text</p>
Multiple styles
Define multiple styles in your config, so you can switch between them and use different stylings in different places of your application.
// config/markdown.php 'styles' => [ 'default' => [ 'h1' => 'text-2xl', 'p' => 'mb-2', ], 'wiki' => [ 'h1' => 'text-4xl', 'p' => 'mb-8', ], ...
Define style
to switch between styles.
Markdown::style('wiki')->parse($yourContent);
No need to define default. If nothing has been provied, markdown will look for the default style.
More about us
License
The MIT License (MIT). Please take a look at our License File for more information.