Hi,
Your software is great!!!
However, I would like to use it to catalog code that actually works (i.e., the snippets could be directly included in a PHP project, instead of having to copy and paste the code). I managed change the functions:
function dec_string($string) {
return ($string);
}
function enc_string($string) {
return ($string);
}
in functions.php, to eliminate the reversing of the snippet, but I still get a problem:
when writing something like
<? echo "hello"; ?> the library app changes the code to
<? echo \"hello\"; ?>
What else should I change so the snippets are usuable as I save them?
Thanks in advance,
Bob
|