PHPackages                             simplydi/simplymarkdown - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. simplydi/simplymarkdown

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

simplydi/simplymarkdown
=======================

A very simple way to handle Markdown content on your website

1141PHP

Since Aug 4Pushed 2y ago1 watchersCompare

[ Source](https://github.com/bharatkumar200/SimplyMarkdown)[ Packagist](https://packagist.org/packages/simplydi/simplymarkdown)[ RSS](/packages/simplydi-simplymarkdown/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (1)Used By (1)

SimplyMarkdown
==============

[](#simplymarkdown)

A very simple way to handle Markdown content on your website

This package can be used to render the markdown content on your website. For example, you can write blog posts on your blog using markdown and parse it using SimplyMarkdown. It will return you the markdown content as html as well as the meta data on your markdown file tht you set, such as title, slug, description, etc.

The below example will illustrate.

**Example 1: getting the contents of a markdown post**:
-------------------------------------------------------

[](#example-1-getting-the-contents-of-a-markdown-post)

*sample-post.md*:

```
---
title: This is a sample title
description: This is a description
cover_image: /path/to/image.png
slug: sample-post
---

This is the body content of the blog post.
```

*using the parser in your app*:

```
