• Stars
    star
    262
  • Rank 151,365 (Top 4 %)
  • Language
    PHP
  • License
    MIT License
  • Created over 7 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Foundation for Emails (Inky) template transpiler

Pinky

A PHP Transpiler for (Inky), the templating language made for the Foundation for Email framework.

Installation

You can install this bundle using composer

composer require lorenzo/pinky

Usage and Examples

Basic Usage

<?php
use Pinky;

$transpiled = Pinky\transformFile('path/to/file.html');

// $transpiled is an instance of DOMDocument
echo $transpiled->saveHTML();

You can transpile strings directly:

<?php
use Pinky;

$transpiled = Pinky\transformString('<row>Contents</row>');
echo $transpiled->saveHTML();

And you can also transpile many files or strings in batch:

<?php
use Pinky;

$files = [$path1, $path2, $path3];

$transpiled = Pinky\transformManyFiles($files);
foreach ($transpiled as $result) {
    echo $result->saveHTML();
}

License

See the LICENSE file for license info (it's the MIT license).

More Repositories

1

audit-stash

Flexible and rock solid audit log tracking for CakePHP 3
PHP
76
star
2

elm-webdriver

A library for controlling a browser using Elm and selenium
Elm
59
star
3

cakephp3-examples

A collection of examples for CakePHP 3
PHP
56
star
4

cakephp-email-queue

A email sending queue for CakePHP
PHP
56
star
5

MongoCake

CakePHP 2.0 plugin to bridge with Doctrine MongoDB ODM in order to use models as objects persisted by Doctrine. This changes the original CakePHP feature of returning arrays of results, and instead returns objects wich are cleaner to manage and extend.
PHP
54
star
6

piping-bag

CakePHP 3 plugin to include a Dependency Injector Container based on Ray.Di
PHP
35
star
7

cakephp-fixturize

CakePHP custom Fixture classes for those having problems maintaining PHP based fixtures.
PHP
29
star
8

HipHop

CakePHP plugin to help you get you application running on the Facebook's HipHop compiler and interpreter
PHP
25
star
9

cakephp-sqs

CakePHP wrapper and utility methods for AWS Simple Queue System
PHP
20
star
10

row-locker

CakePHP ORM plugin for creating exclusive row locks
PHP
19
star
11

workflow

Workflow engine for cakephp
PHP
19
star
12

cakephp3-advanced-examples

Example application for the "Agile database access with CakePHP 3"
PHP
17
star
13

cakephp3-bookmarkr

A Sample CakePHP 3 application built with the Crud plugin
PHP
17
star
14

cakephp-gearman

Gearman utilities for CakePHP
PHP
14
star
15

wrecker

A scriptable HTTP Benchmarking Library
Haskell
13
star
16

cakephp-logstash

CakePHP log stream adapter for logstash
PHP
12
star
17

osmosis

Modular Learning Management System based on the concept of connectivism and web 2.0
PHP
11
star
18

Foundation

CakePHP helpers to output Zurb Foundation friendly html
PHP
11
star
19

cache

A CakePHP cache plugin to make a simple REST api around Cache methods... and other cache goodies
7
star
20

cakefest-workshop-2011

Cakefest workshop 2011
PHP
7
star
21

cakephp-redis

CakePHP support for the Redis key-value database
PHP
6
star
22

cakephp-lokalise

A CakePHP utility shell to upload translation templates to Lokalise.co and download the translated strings
PHP
5
star
23

cake-orm-standalone-example

A minimal example for using the Cake 3 ORM as standalone
PHP
5
star
24

mysql-haskell-nem

A simpler query interface for mysql-haskell
Haskell
3
star
25

cakephp-gridhook

CakePHP webhook event handler for SendGrid
PHP
3
star
26

cake-orm-example

A Simple repo showcasing how to bootstrap the CakePHP 3 ORM
PHP
2
star
27

Platform-Crud-Plugin

Automated CRUD / Scaffolding for CakePHP 2.1+ - keep your controllers real DRY !
PHP
2
star
28

elm-app-example

A simple application example built with Elm 0.17
HTML
1
star
29

trigal

Censo de personas consejo comunal el trigal
PHP
1
star
30

cakefest2015

Files generated during the Advanced CakePHP 3 Workshop at CakeFest 2015
PHP
1
star
31

elm-string-addons

Extra utility functions for strings in Elm
Elm
1
star
32

cake3-test-app-with-plugin

Test application for showing how a plugin with routes is loaded in Cake 3
PHP
1
star
33

lorenzo.github.io

personal tech blog
HTML
1
star
34

Platform-API-plugin

CakePHP 2.1 plugin for easy REST JSON API
PHP
1
star
35

haskell-text-games

A few text-based games used for practicing haskell
Haskell
1
star