Code Monkey home page Code Monkey logo

jade.php's People

Contributors

everzet avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jade.php's Issues

Support for attributes without parenthesis

I haven't looked the code yet, but will ASAP.

In the meanwhile, I let here my idea.
The parenthesis could be replaced by a simple comma, for example, this:

a(href: '/login', title: 'View login page') Login

Could be written like this:

a, href: '/login', title: 'View login page' Login

The rationale is simple: is there a comma? then an attribute is comming

[if IE] tag not opening/closing properly

Jade:

!!!
html
  head
    title= 'title'
    // [if IE]
      script(type="text/javascript")
        window.console = { log: function () {} };

  body!= body

Results in HTML:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>title</title><!-- [if IE]<script type="text/javascript">window.console = { log: function () {} };

    </script>--></head>

Should result in HTML:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>title</title><!-- [if IE]><script type="text/javascript">window.console = { log: function () {} };

    </script><![endif]--></head>

::addChild error

when trying to parse a template I get the following error:

Catchable fatal error: Argument 1 passed to Everzet\Jade\Node\BlockNode::addChild() must be an instance of Everzet\Jade\Node\Node, null given, called in /vagrant/lithium/libraries/li3_jade/libraries/jade.php/src/Everzet/Jade/Parser.php on line 59 and defined in /vagrant/lithium/libraries/li3_jade/libraries/jade.php/src/Everzet/Jade/Node/BlockNode.php on line 25 

Here is the template contents that I am trying to parse:

h2 The Jade template engine Rocks
p(style='white-space:pre;')
    | Jade makes writing HTML EASY and Beautiful
    | If you don't know about it
    a(href="http://jade-lang.com/") Get on it!

Regex failure in PHP 5.4, 5.5 lead to wrong tags

Hello,

When my server was upgraded to PHP 5.4, 5.5 the following warning was shown.
Warning: preg_match(): Compilation failed: invalid range in character class at offset 8 in Everzet/Jade/Lexer/Lexer.php on line 181

Escaping the dash and changing the regex for '/^(\w[:-\w]*)/' solved the problem for me.

[EXPIRED] Last point in paragraph

JADE
p Donate via
a(href='/paypal') Paypal
|.

or

p Donate via
  a(href='/paypal') Paypal
  .

OUTPUT
Donate via Paypal .

EXPECTED
Donate via Paypal.

(Look for a space between word and point)

Auto escaping should be default

Hallo,

great library and what I'm currently tried worked well. I'm currently working on a integration of this library for Zend Framework.

What I noticed is that the content isn't escaped by default. HAML does this and I think this should be the default in this library too, since it makes life easier and secure.

Current:
p <script>

Result:
<p><script></p>

Expected:
<p>&lt;script&gt;</p>

Also do this when a variable is used:
p= $foobar

And of cause the programmer should be able to forbid escaping:
p!= <script>
and when the escaping is set to off globally:
p&= $foobar
makes it still escape.

(That syntax follows HAMLs)

HTML attributes with comma in value throws the whole tag off

For example, <meta name="viewport" content="width=device-width, initial-scale=1.0"> is a common practice for mobile-friendly development. When written in jade.php as meta(name="viewport", content="width=device-width, initial-scale=1.0"), it is rendered as <meta name="viewport" content="width=device-width" initial-scale="1.0" />. The Javascript version does not currently have this bug.

I can't use multibyte char to attribute

input:submit.btn.primary(value="てすと")
will be
<input class="btn primary" value="てすと")

so i modified Lexer/Lexer.php like following.
it's seems ok, what do you think?

diff --git a/src/Everzet/Jade/Lexer/Lexer.php b/src/Everzet/Jade/Lexer/Lexer.php
index 16c55ab..6be2d1a 100644
--- a/src/Everzet/Jade/Lexer/Lexer.php
+++ b/src/Everzet/Jade/Lexer/Lexer.php
@@ -426,6 +426,23 @@ class Lexer implements LexerInterface
$dbrac = false;

     for ($i = 0, $length = mb_strlen($string); $i < $length; ++$i) {
  •                 $c = mb_substr($string,$i,1);
    
  •        if ('"' === $c) {
    
  •            $dbrac = !$dbrac;
    
  •        } elseif ('\'' === $c) {
    
  •            $sbrac = !$sbrac;
    
  •        }
    
  •        if (!$sbrac && !$dbrac && $begin === $c) {
    
  •            ++$nbegin;
    
  •        } elseif (!$sbrac && !$dbrac && $end === $c) {
    
  •            if (++$nend === $nbegin) {
    
  •                $position = $i;
    
  •                break;
    
  •            }
    
  •        }
    
  •     /*
         if ('"' === $string[$i]) {
             $dbrac = !$dbrac;
         } elseif ('\'' === $string[$i]) {
    
    @@ -440,6 +457,7 @@ class Lexer implements LexerInterface
    break;
    }
    }
  •             */
     }
    

include / extends

Will the partials and inheritance features be included in this project at some point?

.

.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.