Click here to Skip to main content
15,887,746 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: Tip & Trick formatting problem Pin
Johnny J.8-Jun-10 5:32
professionalJohnny J.8-Jun-10 5:32 
GeneralRe: Tip & Trick formatting problem Pin
Henry Minute9-Jun-10 0:28
Henry Minute9-Jun-10 0:28 
GeneralRe: Tip & Trick formatting problem Pin
Johnny J.9-Jun-10 0:55
professionalJohnny J.9-Jun-10 0:55 
GeneralRe: Tip & Trick formatting problem Pin
Luc Pattyn9-Jun-10 1:18
sitebuilderLuc Pattyn9-Jun-10 1:18 
GeneralRe: Tip & Trick formatting problem Pin
PompeyBoy39-Jun-10 1:19
PompeyBoy39-Jun-10 1:19 
GeneralRe: Tip & Trick formatting problem Pin
Thiru Thirunavukarasu8-Jun-10 5:30
Thiru Thirunavukarasu8-Jun-10 5:30 
GeneralRe: Tip & Trick formatting problem Pin
Johnny J.8-Jun-10 5:32
professionalJohnny J.8-Jun-10 5:32 
GeneralRe: Tip & Trick formatting problem [modified] Pin
Luc Pattyn8-Jun-10 5:39
sitebuilderLuc Pattyn8-Jun-10 5:39 
Thiru Thirunavukarasu wrote:
Angle brackets are always interpreted as html tags


I slightly disagree. It is my guess there often (maybe always) is an attempt to interpret them, however it often fails gracefully.

Behavior is rather inconsistent, my below example holds comparisons with a numeric constant "10" and a numeric variable "n"
// comparing with 10
for(int i=0; i<10; i++) // no escape used, "tag" doesn't start with a digit, so it works just fine
for(int i=0; i<10; i++) // escape used
// comparing with n
for(int i=0; i<n; i++)  // no escape used, "tag" starts with a letter, gets eaten
for(int i=0; i< n; i++)  // no escape used, "tag" starts with a space, and it works fine
for(int i=0; i<n; i++)  // escape used


BTW: always escaping them works fine, so that is still the recommended way!

Smile | :)

PS: the example also illustrates some syntax coloring odities that have been reported before (and aren't all that important)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

I only read formatted code with indentation, so please use PRE tags for code snippets.

I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).

modified on Tuesday, June 8, 2010 11:45 AM

GeneralRe: Tip & Trick formatting problem Pin
Thiru Thirunavukarasu8-Jun-10 10:00
Thiru Thirunavukarasu8-Jun-10 10:00 
GeneralRe: Tip & Trick formatting problem Pin
Luc Pattyn8-Jun-10 10:09
sitebuilderLuc Pattyn8-Jun-10 10:09 
GeneralRe: Tip & Trick formatting problem Pin
Thiru Thirunavukarasu8-Jun-10 10:36
Thiru Thirunavukarasu8-Jun-10 10:36 
GeneralRe: Tip & Trick formatting problem Pin
Luc Pattyn8-Jun-10 10:43
sitebuilderLuc Pattyn8-Jun-10 10:43 
GeneralRe: Tip & Trick formatting problem Pin
Thiru Thirunavukarasu8-Jun-10 10:51
Thiru Thirunavukarasu8-Jun-10 10:51 
GeneralSmall but embarrasing error Pin
Johnny J.8-Jun-10 3:30
professionalJohnny J.8-Jun-10 3:30 
GeneralRe: Small but embarrasing error Pin
Sean Ewington8-Jun-10 3:33
staffSean Ewington8-Jun-10 3:33 
GeneralRe: Small but embarrasing error Pin
Johnny J.8-Jun-10 3:34
professionalJohnny J.8-Jun-10 3:34 
GeneralRe: Small but embarrasing error Pin
Luc Pattyn8-Jun-10 4:53
sitebuilderLuc Pattyn8-Jun-10 4:53 
GeneralRe: Small but embarrasing error Pin
Johnny J.8-Jun-10 5:21
professionalJohnny J.8-Jun-10 5:21 
GeneralRe: Small but embarrasing error Pin
Chris Maunder8-Jun-10 9:42
cofounderChris Maunder8-Jun-10 9:42 
JokeRe: Small but embarrasing error Pin
Johnny J.8-Jun-10 9:45
professionalJohnny J.8-Jun-10 9:45 
JokeRe: Small but embarrasing error Pin
Peter_in_27808-Jun-10 15:59
professionalPeter_in_27808-Jun-10 15:59 
GeneralRe: Small but embarrasing error Pin
Jaime Olivares21-Jun-10 7:10
Jaime Olivares21-Jun-10 7:10 
GeneralRe: Small but embarrasing error Pin
Chris Maunder21-Jun-10 7:24
cofounderChris Maunder21-Jun-10 7:24 
GeneralRe: Small but embarrasing error Pin
Luc Pattyn25-Jun-10 8:09
sitebuilderLuc Pattyn25-Jun-10 8:09 
GeneralScreenshots MIA [modified] Pin
Hans Dietrich8-Jun-10 2:27
mentorHans Dietrich8-Jun-10 2:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.