Forum
SpewXPDev
on Tue 11 May, 2010 13:46:34 +0000
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
Thank you
You do not have sufficient permissions to comment
1 year ago
SpewXPDev
created
Comment #47346 on Forum topic Forum
rs
created
Comment #47256 on Forum topic Forum
SpewXPDev
created
Forum topic Forum
View full history
Topic and Comments for Forum
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:
back to text