PHPackages                             rtablada/markdown - 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. rtablada/markdown

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

rtablada/markdown
=================

A laravel style markdown generator using static method calls

026PHP

Since Jan 31Pushed 13y ago1 watchersCompare

[ Source](https://github.com/rtablada/larv-markdown)[ Packagist](https://packagist.org/packages/rtablada/markdown)[ RSS](/packages/rtablada-markdown/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Rtablada\\Markdown
==================

[](#rtabladamarkdown)

A lightweight Laravel style markdown creator in PHP for composer. The code structure follows the syntax listed at

\##Instalation

\####Using Composer: { "require": { "Rtablada/Markdown": "0.1.\*" }

\##Use

All of the methods are static calls on the Rtablada\\Markdown class.

Utilizes the composer autoloader.

`use \Rtablada\Markdown\Markdown;`

\###Headings:

Simple calls will return h1 elements: `Markdown::heading('Text')` returns `# Text`

A heading level can also be called as the first argument: `Markdown::heading( 2, 'Text')` returns `## Text`

If multiple lines are passed to the heading method, only the first line is made a heading and all other text is left as is. `Markdown::heading("Text\nNew Line)` returns `# Text\nNew Line`

\###Blockquotes

Block quotes support multiple lines where: `Markdown::bockquote("Text\nNew Line)` returns `> Text\n> New Line`

\###Unordered Lists

Unorderd lists can be made using an array of strings or a multiline string. It also accepts an optional marker option which allows the user to specify either an astrik or underscore (astriks are used by default).

`Markdown::ul(['first', 'second'], '_')` and `Markdown::ul("first\nsecond"], '_')` both produce: `1. first\n2. second`

\###Ordered List

Ordered Lists work similar to unordered lists. The optional second argument accepts the start point for the ordered list.

`Markdown::ol(['first', 'second'])` and `Markdown::ol("first\nsecond"], '1')` both produce: `1. first\n2. second`

\###Code Blocks

Code blocks create a tabbed in area which is translated as a multiline code block:

`Markdown::codeblock("first\nsecond")`produces: `\tfirst\n\tsecond'`

\###Links

Links can be created as quick links:

`Markdown::link('http:://google.com')` : ``

Or fully functioning markup links:

`Markdown::link('http:://google.com', 'Text', 'Title')` : `[Text](http:://google.com Title)>`

\###Emphasis

em can be created with the em method:

`Markdown::em('text')` : `*text*`

so can strong blocks:

`Markdown::em('text', '**')` : `**text**``Markdown::em('text', '_')` : `_text_`

\###In Line Code

In line code can be created:

`Markdown::code('{{ Form::open() }}', '**')` : ``{{ Form::open()``

\###Images

Images items will be made using: `Markdown::image('http://placehold.it/350x150', 'alt')` : `![alt](http://placehold.it/350x150)`

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/ea9ccd400c74151601341e320935a31d1a9779c5eb49a8f364bc7a0ac75baa32?d=identicon)[rtablada](/maintainers/rtablada)

---

Top Contributors

[![rtablada](https://avatars.githubusercontent.com/u/2532004?v=4)](https://github.com/rtablada "rtablada (16 commits)")

### Embed Badge

![Health badge](/badges/rtablada-markdown/health.svg)

```
[![Health](https://phpackages.com/badges/rtablada-markdown/health.svg)](https://phpackages.com/packages/rtablada-markdown)
```

###  Alternatives

[airesvsg/acf-to-rest-api-recursive

Get ACF fields recursively

442.5k](/packages/airesvsg-acf-to-rest-api-recursive)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
