How to convert a Markdown string to HTML using Laravel
A guide on how to convert a Markdown string to HTML in Laravel using the `league/commonmark` library, making the conversion process simple and effective.
In this article, we will explore how to use the league/commonmark
library in Laravel to convert a Markdown string into HTML efficiently. league/commonmark
is a popular and powerful library for handling Markdown in PHP applications.
Laravel code:
<?php
use League\CommonMark\CommonMarkConverter;
Route::get('/convert-markdown', function () {
// Markdown string
$markdown = "# Welcome to Laravel\nThis is an example of converting Markdown to HTML.";
// Create an instance of CommonMarkConverter
$converter = new CommonMarkConverter();
// Convert the Markdown string to HTML
$html = $converter->convertToHtml($markdown);
// Display the result
return $html;
});
Detailed explanation:
-
use League\CommonMark\CommonMarkConverter;
: Imports theleague/commonmark
library for converting Markdown to HTML. -
$markdown = "# Welcome to Laravel\n..."
: Declares a Markdown string to be converted. -
$converter = new CommonMarkConverter();
: Creates an instance ofCommonMarkConverter
to perform the conversion. -
$html = $converter->convertToHtml($markdown);
: Uses theconvertToHtml
method to convert the Markdown string to HTML. -
return $html;
: Returns the converted HTML string.
System Requirements:
- PHP 7.3 or higher
- Laravel 8.x or 9.x
- Library
league/commonmark
How to install the libraries needed to run the Laravel code above:
Use the following command to install the league/commonmark
library:
composer require league/commonmark
Tips:
- You can create a reusable service for Markdown conversion across your entire project.
- Always validate your Markdown string before conversion to ensure data integrity.