Buenas noches @pateketrueke, ps bn, como ya lo he expresado anteriormente, no utilizo Jade Compiler para PHP porque el proyecto como tal lo estoy trabajando sobre CakePHP, por lo tanto, no puede combinar Jade Compiler for PHP con CakePHP, es por eso que pensé que utilizando el Node Template Engine de Jade podría diseñar mis interfaces de una manera muy clara, pero según veo, con Jade para Javascript no es posible :(.
En Jade Node Template Engine, hay un archivo js llamado filters.js qué es, creo yo, el archivo donde se generan los filtros, este archivo contiene lo siguiente
Código Javascript
:
Ver original/*!
* Jade - filters
* MIT Licensed
*/
module.exports = {
/**
* Wrap text with CDATA block.
*/
cdata: function(str){
return '<![CDATA[\\n' + str + '\\n]]>';
},
/**
* Transform sass to css, wrapped in style tags.
*/
sass: function(str){
str = str.replace(/\\n/g, '\n');
var sass = require('sass').render(str).replace(/\n/g, '\\n');
return '<style type="text/css">' + sass + '</style>';
},
/**
* Transform stylus to css, wrapped in style tags.
*/
stylus: function(str, options){
var ret;
str = str.replace(/\\n/g, '\n');
var stylus = require('stylus');
stylus(str, options).render(function(err, css){
if (err) throw err;
ret = css.replace(/\n/g, '\\n');
});
return '<style type="text/css">' + ret + '</style>';
},
/**
* Transform less to css, wrapped in style tags.
*/
less: function(str){
var ret;
str = str.replace(/\\n/g, '\n');
require('less').render(str, function(err, css){
if (err) throw err;
ret = '<style type="text/css">' + css.replace(/\n/g, '\\n') + '</style>';
});
return ret;
},
/**
* Transform markdown to html.
*/
markdown: function(str){
var md;
// support markdown / discount
try {
md = require('markdown');
} catch (err){
try {
md = require('discount');
} catch (err) {
try {
md = require('markdown-js');
} catch (err) {
try {
md = require('marked');
} catch (err) {
throw new
Error('Cannot find markdown library, install markdown, discount, or marked.');
}
}
}
}
str = str.replace(/\\n/g, '\n');
return md.parse(str).replace(/\n/g, '\\n').replace(/'/g,''');
},
/**
* Transform coffeescript to javascript.
*/
coffeescript: function(str){
var js = require('coffee-script').compile(str).replace(/\\/g, '\\\\').replace(/\n/g, '\\n');
return '<script type="text/javascript">\\n' + js + '</script>';
}
};
Yo agregue estas lineas pero no sé que otras modificaciones hacerle para que pueda funcionar:
Código Javascript
:
Ver original/**
* Transform php a html
*/
php: function(str){
str = str.replace(/\\n/g, '\n');
return '<?php ' + str + ' ;?>';
}
Si alguno puede ayudarme, le estaré eternamente agradecido, gracias muchachos!