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

https://github.com/viniwrubleski/jade-php


https://github.com/viniwrubleski/jade-php

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Jade-PHP

Adds the possibility of compiling PHP for Jade

## Usage

var jade = require('jade');
var jadephp = require('jade-php');

jadephp(jade);

var html = jade.render('string of jade');

## Example

The following code:

!!!
html
head
title= $title

body
ul
- foreach ($this->list as $list):
li!= $list
- endforeach

Will produce:







    list as $list): ?>