Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chipbell4/recipeml-parser
- Owner: chipbell4
- Created: 2013-03-29T03:34:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-03-29T03:50:21.000Z (over 11 years ago)
- Last Synced: 2024-04-14T18:27:16.484Z (7 months ago)
- Language: PHP
- Size: 109 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
```htmlCake
Icing
- ½ cup sugar
- 1 cup milk
- $#x2153; cup flour
Hello world here is an image:
```