Raku / examples

Many examples of Raku code
https://examples.raku.org/
Artistic License 2.0
294 stars 89 forks source link

Stuff in angled brackets does not display #38

Closed zoffixznet closed 8 years ago

zoffixznet commented 8 years ago

See http://examples.perl6.org/categories/interpreters/RPN.html my token Item { <Value> || <Op> }; on the site shows up as my token Item { || };

bzipitidoo commented 8 years ago

Also wrong is the next line: my token Expr { [ ]+ };

bzipitidoo commented 8 years ago

Lot more missing text in angle brackets: http://examples.perl6.org/categories/interpreters/lisp.html

zoffixznet commented 8 years ago

I think all of those are caused by the same issue inside the script that generates HTML, so there's no real need to hunt down every case.

stmuk commented 8 years ago

This is now fixed. The root causes were the behaviour of a conditional had changed such that the colour syntax wasn't being added. This revealed that much of the site didn't escape html correctly in the absence of this. There also were problems with the deployment system which is fragile and rakudo/panda themselves (I've stuck on old versions until curli is more stable).