Click here to Skip to main content
15,897,891 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: Though there is 1 vote but no comments? Pin
PompeyBoy39-Jun-10 2:05
PompeyBoy39-Jun-10 2:05 
GeneralRe: Though there is 1 vote but no comments? Pin
Sandeep Mewara9-Jun-10 2:15
mveSandeep Mewara9-Jun-10 2:15 
GeneralRe: Though there is 1 vote but no comments? Pin
#realJSOP9-Jun-10 2:46
professional#realJSOP9-Jun-10 2:46 
GeneralRe: Though there is 1 vote but no comments? Pin
Thiru Thirunavukarasu9-Jun-10 5:50
Thiru Thirunavukarasu9-Jun-10 5:50 
GeneralHighlighting Problem Pin
Hans Dietrich8-Jun-10 10:24
mentorHans Dietrich8-Jun-10 10:24 
GeneralRe: Highlighting Problem Pin
Chris Maunder8-Jun-10 10:34
cofounderChris Maunder8-Jun-10 10:34 
GeneralRe: Highlighting Problem Pin
Hans Dietrich8-Jun-10 10:39
mentorHans Dietrich8-Jun-10 10:39 
GeneralRe: Highlighting Problem Pin
Chris Maunder10-Jun-10 4:34
cofounderChris Maunder10-Jun-10 4:34 
GeneralRe: Highlighting Problem [modified] Pin
Luc Pattyn8-Jun-10 12:09
sitebuilderLuc Pattyn8-Jun-10 12:09 
GeneralRe: Highlighting Problem Pin
Hans Dietrich9-Jun-10 4:39
mentorHans Dietrich9-Jun-10 4:39 
GeneralRe: Highlighting Problem Pin
Luc Pattyn9-Jun-10 4:44
sitebuilderLuc Pattyn9-Jun-10 4:44 
GeneralRe: Highlighting Problem Pin
Hans Dietrich9-Jun-10 5:09
mentorHans Dietrich9-Jun-10 5:09 
GeneralRe: Highlighting Problem Pin
Luc Pattyn9-Jun-10 5:14
sitebuilderLuc Pattyn9-Jun-10 5:14 
GeneralTip & Trick formatting problem Pin
Johnny J.8-Jun-10 5:19
professionalJohnny J.8-Jun-10 5:19 
GeneralRe: Tip & Trick formatting problem [modified] Pin
Luc Pattyn8-Jun-10 5:29
sitebuilderLuc Pattyn8-Jun-10 5:29 
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 

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.