Forum

We wanted to use the forum to communicate with the group and are finding it very aggravating.

The most serious problem is that we cannot post code, the system will interpret it as wiki formatting and trash the text. There is a nice code button which uses @ but it is completely ignored during formatting. Is there a way to resolve this?

Forum Topic Options

Feeds

Forum Topic and Comments

rs on Wed 12 May, 2010

You should be using bc.. at the beginning of the line. Its a multi-line block code markup.

To get back to the regular text, you would use p. instead.

For e.g. the following text:

bc.. #include <stdio.h>

main()
{
for(;;)
{
printf (“Hello World!\n”);
}
}
p. back to text

Will be rendered as:

#include <stdio.h>

main()
{
  for(;;)
      { 
          printf ("Hello World!\n");
      }
}

back to text

 

You do not have sufficient permissions to comment