Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Horror in the code
TiGR
✭
Lincoln, why are you using 21 pcre calls for every post on page?! With 30 posts on page it takes 630 calls! This is a performance horror.
I've used less than 20 pcre calls for entire templating engine. Why this simple task should take that much of resources?
I've used less than 20 pcre calls for entire templating engine. Why this simple task should take that much of resources?
Tagged:
0
Comments
If you think automatically adding 'p' tags is simple, then I'd bet you haven't tried it.
How many regexs it runs, I don't know.
$html_string = Gdn_Format::To($markdown_string, 'markdown');
That will put in paragraph marks, images, lists etc. That may be overkill just to handle paragraphs, but the markdown object can be instantiated by hand just to run specific parts of it.