Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chipbell4/recipeml-parser

Recipe Markup PHP Parser
https://github.com/chipbell4/recipeml-parser

Last synced: 9 days ago
JSON representation

Recipe Markup PHP Parser

Awesome Lists containing this project

README

        

PHP Library to parse Recipe Markup language (that I invented)

```
A Recipe looks like the following
@Recipe Cake
@Ingredients Icing
@I 1/2 cup sugar
@I 1 cup milk
@I 1/3 cup flour
@EndIngredients
Hello world here is an image:
@Image /images/whatever.jpg Here is some alt text
```

This will render for the most part like the following:
```html

Cake


Icing


  • ½ cup sugar

  • 1 cup milk

  • $#x2153; cup flour


Hello world here is an image:Here is some alt text
```