Bas Groothedde
unread,Oct 29, 2012, 6:10:56 AM10/29/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to highl...@googlegroups.com
Hi there group,
I have noticed that with highlight.js, the function keyword will not be highlighted if
the parenthesis for the argument list are directly after the keyword. It is required
to have a space in between the keyword and parenthesis in order for it to highlight.
myFunction = function(a, b) -- No highlight
return (a * b);
end
myFunction = function (a, b) -- highlighted
return (a * b);
end
Is there any reason for this?