Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: (Client side) Perl Syntax Highlighter

by tachyon (Chancellor)
on Mar 12, 2004 at 19:08 UTC ( [id://336239]=note: print w/replies, xml ) Need Help??


in reply to (Client side) Perl Syntax Highlighter

Fascinating! These patches fix the moving my issue (actually any key word that follows a comment will right shift onClick refresh) and convert tabs to 4 spaces for consistency.

45c45 < s = s.replace(/\&/g, "&amp;").replace(/</g, "&lt;").replace( +/>/g, "&gt;").replace(/\n/g, "<BR>"); --- > s = s.replace(/\&/g, "&amp;").replace(/</g, "&lt;").replace( +/>/g, "&gt;").replace(/\n/g, "<BR>").replace(/\t/g, ' '); 80c80 < re = /\#.*?(\r|\n)/; --- > re = /\#.*?[\r|\n]+/;

cheers

tachyon

Replies are listed 'Best First'.
Re: Re: (Client side) Perl Syntax Highlighter
by Jaap (Curate) on Mar 12, 2004 at 21:29 UTC
    Thank you. Did you mean for the '|' to be between the \r and \n?

      Nope! I meant [\n\r]+ Great work, very impressive use of JS. As the author you have to patch the patches :-)

      cheers

      tachyon

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://336239]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-25 05:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found