Pular para o conteúdo principal

Basic Usage

Enviado por Yukare em

Basic Usage

The basic usage (with the default settings) is:

  <code language="java">
  for (int i; i<10; ++i) {
    dothisdothat(i);
  }
  </code>

Which becomes:

for (int i; i<10; ++i) {
  dothisdothat(i);
}


When language tags are enabled (like "<java>" for Java) you can also do

  <java>
  for (int i; i<10; ++i) {
    dothisdothat(i);
  }
  </java>


More options and tricks can be found in the filter tips of the text format at
www.example.com/?q=filter/tips .

Termos