vote up 0 vote down star

I have a little confusing problem.

I have two files, both that run showdown however it seems that only one file parses correctly.

Here's the deal.

File 1 . Is run through php and ajax

File 2 . Is grabbed via an ajax request, the file the processes the ajax request contains this code.

Here is the ajax

as you can see, the jquery that puts the details onto the screen are exactly the same apart from the variables and the json string instead of a direct string from the database.

Now file one doesn't parse the markdown correctly, where file two does...

here is a screenshot of file one and two

file one

file one not working

file two

file two working

Any ideas what could be possibly causing this? Also any ideas on a fix?

flag

2 Answers

vote up 1 vote down

Maybe it is because in file 2 you have:

  $copy = preg_replace('^(.*)\n(.*)^', '$1<br />$2', $result['copy']);
  $copy = preg_replace('/[\r]+/', '$1<br />$2', $result['copy']);

Which ignores the first preg_replace(). You want:

  $copy = preg_replace('^(.*)\n(.*)^', '$1<br />$2', $result['copy']);
  $copy = preg_replace('/[\r]+/', '$1<br />$2', $copy);

Which you have correctly implemented in file 1. This could mean that file 1's behaviour is correct and file 2's behaviour is actually incorrect, depending on the way you look at it.

EDIT

To answer your comment:

Replace (in file 1):

   $copy = preg_replace('^(.*)\n(.*)^', '$1<br />$2', $js_r->copy);
   $copy = preg_replace('/[\r]+/', '$1<br />$2', $copy);

With

   $copy = preg_replace('/[\r]+/', '$1<br />$2', $js_r->copy);

Does that achieve the desired effect?

link|flag
ok, but if i change that in file 1 (which is the one that isn't working) then i won't be getting the desired effect in either? – Neil Hickman Sep 26 at 20:05
Well do the opposite in file 1 then, replace $copy = preg_replace('^(.*)\n(.*)^', '$1<br />$2', $js_r->copy); $copy = preg_replace('/[\r]+/', '$1<br />$2', $copy); with $copy = preg_replace('/[\r]+/', '$1<br />$2', $js_r->copy); I apologize for the lack of code formatting in comments. – Sbm007 Sep 26 at 20:10
it could work, but then as in another question i had that originally we came to the conclusion that the parsing of \n is required, otherwise it will break my javascript that i have. i'm out the office at the moment so when i get back i'll try it and let you know. – Neil Hickman Sep 26 at 21:36
Yeah I found that quite odd in your code, you could just simply do a $code = str_replace("\n", "<br />", $js_r->copy); That's 2 lines in 1 and better performance. Not entirely sure why you decided to use regular expressions for this, as that is overkill. – Sbm007 Sep 26 at 22:41
as i imagined, that has now broken the first file as in the same problem i had with the original question – Neil Hickman Sep 27 at 19:24
vote up 0 vote down check

Ok,

So it seems it was the parsing of the line breaks in the file... However we have changed it from
as this is causing the issue of the markdown parsing incorrectly to double escaped

so it now reads

$copy = preg_replace("/\n/", "\\\\n", $js_r->copy);
$copy = preg_replace("/\r/", "\\\\r", $copy);

which works correctly and parses both files efficiently

link|flag
1  
Ok, glad it worked out well. By the way you may want to consider using str_replace instead of preg_replace as it is much faster (non regex). – Sbm007 Sep 27 at 21:16
i did take up your advise after i posted that ... i'm all for saving resources... thanks for pointing me in the right direction anyway! – Neil Hickman Sep 27 at 23:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.