ftembe / kitara-markdown
simple Markdown parser in PHP
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:libray
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2024-12-04 17:17:09 UTC
README
This Markdown parser supports basic formatting such as bold and italic text, headers, links, and paragraphs. It uses regular expressions to search for patterns in the Markdown text and replace them with corresponding HTML tags.
Installation
To install this package no can use composer
composer require ftembe/kitara-markdown
Or
git clone https://github.com/FTembe/kitara-markdown.git
Usage
require('vendor/autoload.php'); use Kitara\Parser\Markdown as Parser; $markdown = new Parser; echo $markdown::render('## My name is Francisco Tembe');