> AiutoSuFormattazione

The following 174 words could not be found in the dictionary of 159 words (including 159 LocalSpellingWords) and are highlighted below:

above   alternative   alto   An   and   any   are   at   attachment   backtick   backticks   be   bearing   beginning   between   bold   both   braces   but   by   can   capo   carattere   caratteri   characters   code   colorize   colorized   Colorized   colors   con   configuration   consecutive   containing   corsivo   curly   currently   default   del   delimita   di   different   disabled   Display   display   displays   doppi   due   Editing   embed   enabled   end   escaped   esempio   Example   example   extension   file   fissa   Foot   For   for   format   formattazione   formatting   forzare   from   get   graffe   grassetto   has   Help   here   ignored   il   import   in   In   information   inline   inlined   inserire   inserting   instruction   italics   languages   Lascia   lessons   line   lines   markers   markup   math   might   Mix   Mixing   more   No   no   note   Note   of   On   on   ones   only   oppure   Or   other   ottenere   page   palette   paragrafi   paragrafo   parentesi   Per   per   possible   processing   programma   Puoi   py   python   racchiudi   racchiudilo   recall   Regole   riformattato   riga   same   scrivere   sections   see   senza   sequence   sequences   several   shorter   sia   sorgente   source   spaces   spaziatura   spostato   start   support   syntax   testo   than   that   the   them   There   this   to   tra   tre   un   una   Usa   usa   use   via   visuazzare   vuota   ways   we   wiki   with   within   world   You   you   your  

Clear message

Regole di formattazione del testo

Lascia una riga vuota tra i paragrafi. Usa [[BR]] per forzare l'a-capo in un paragrafo.

Puoi visuazzare del testo in corsivo oppure in grassetto. Per scrivere in corsivo, racchiudi il testo in doppi apici. Per scrivere in grassetto, delimita il testo con tre apici. Per ottenere del testo spostato in alto, racchiudilo con due caratteri "^".

Per inserire del testo senza che sia riformattato con un carattere spaziatura fissa, ad esempio il sorgente di un programma, usa tre parentesi graffe consecutive:

10 PRINT "Hello, world!"
20 GOTO 10

Note that within code sections, both inline and display ones, any wiki markup is ignored. An alternative and shorter syntax for inlined code is to use backtick characters (note that this can be disabled by the site's configuration, but is enabled by default).

For more information on the possible markup, see HelpOnEditing.

Example

Mixing ''italics'' and '''bold''':
 * '''''Mix''' at the beginning''
 * '''''Mix'' at the beginning'''
 * '''Mix at the ''end'''''
 * ''Mix at the '''end'''''

You might recall ''a''^2^ `+` ''b''^2^ `=` ''c''^2^ from your math lessons.

An { { {inline code sequence} } } has the start and end markers on the same line. Or you use `backticks`.

A code display has them on different lines: { { {
'''No''' markup here!
} } }
/!\ In the above example, we "escaped" the markers for source code sequences by inserting spaces between the curly braces.

Display

Mixing italics and bold:

You might recall a2 + b2 = c2 from your math lessons.

An inline code sequence has the start and end markers on the same line. Or you use backticks.

A code display has them on different lines:
'''No''' markup here!

Colorized code displays

There are several ways to get colorized formatting of Python code1:
  1. start a code display with a line only containing "#!python"

  2. embed a file attachment bearing a ".py" extension via "inline:"

  3. start a page with a Python format processing instruction ("#format python")

Example:
  1 
  2 
from colors import palette
palette.colorize('python')