The Artima Developer Community
Sponsored Link

How to Post in the Artima Forums

Advertisement

Any HTML is removed from your post, but you can obtain simple text formatting. Text between [b] and [/b] will appear in bold face. Text between [i] and [/i] will appear in italic face. Text between [u] and [/u] will appear in underlined. Text between [code] and [/code] will appear in code font. Here's an example:

You Type You Get
On that bleak hilltop the [u]earth[/u] was hard with a [b]black[/b] frost, and the air made me [i]shiver[/i] through [code]every[/code] limb. On that bleak hilltop the earth was hard with a black frost, and the air made me shiver through every limb.

URLs you type will be appear as links. Here's an example:

You Type You Get
For more information, see:

http://www.artima.com/consulting.html
For more information, see:

http://www.artima.com/consulting.html

Java code between [java] and [/java] will appear in syntax highlighted code font exactly as you format it. Here's an example:

You Type You Get
[java]
/**
 * App that says hello.
 */
class Hello {

    public static void main(String[] args) {

        System.out.println("Hello, world!\n");
    
}
[/java]
/**
* App that says hello.
*/

class Hello {

public static void main(String[] args) {

System.out.println("Hello, world!\n");
}
}

Text between [pre] and [/pre] will appear in code font exactly as you format it. For example:

You Type You Get
[pre]
main()
{
    printf("Hello, world!\n");
}
[/pre]
main()
{
printf("Hello, world!\n");
}

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use