Jake Russo
Jake Russo
Though I definitely understand the concern for proper highlighting, I also wanted to add that technically in the example you gave @hankache you don't even need curlies as a simple...
@hankache unfortunately highlight.js doesn't support heredocs but otherwise I'm almost finished with Perl 6 support for it. I've been looking at [SyntaxHighlighter](http://alexgorbatchev.com/SyntaxHighlighter/) which utilizes [XRegexp](http://xregexp.com) and that has the ability...
A final option would be to beef up Pygments' Perl 6 lexer! I'll take a look and see what can be done there too as I've written a Pygments lexer...
If you're going down the `@@` sigil path, why not just place it directly on the name? The getting and setting could be determined from function signature. ```coffee class Foo...
You can always add it yourself via the custom stylesheet Atom provides.
So far, I've worked out that you put css files in index.html because TranscludingComponentFactory doesn't work in this (whereas it did work in ShadowDomComponentFactory). So does this mean that you...
3rd test succeeds after I pulled your commits, not sure what I did wrong following along with diff. 4th test is failing because you manually listed slide entries instead of...
Unless the fallthrough style `switch` statements are allowed there really would be no difference to using `if`/`else if`/`else` blocks. However, according to that wikipedia page, optimizing compilers like GCC and...
Interestingly, it works if you call the function like `test-func:`. It also works if you declare the parameters like this: ``` text test-func2 = (foo or foo is "foo", bar)...
No, you're right. Also do you think it should be `__doc__` like python?