535
contributi
(Aggiunto syntaxhighlight) |
m (typo) |
||
Riga 313: | Riga 313: | ||
|<code>highlight</code> | |<code>highlight</code> | ||
|Questo attributo specifica una o più linee che devono essere marcate, evidenziandole con un differente colo di sfondo. Si possono anche specificare più linee separate da virgole (se linee separate) <code>highlight="1,4,8"</code> o da un trattino <code>highlight="5-7"</code> se è necessario evidenziare un certo range di linee. | |Questo attributo specifica una o più linee che devono essere marcate, evidenziandole con un differente colo di sfondo. Si possono anche specificare più linee separate da virgole (se linee separate) <code>highlight="1,4,8"</code> o da un trattino <code>highlight="5-7"</code> se è necessario evidenziare un certo range di linee. | ||
|< | |<pre><syntaxhighlight lang="python" line start=3 highlight="1,5-7"> | ||
def quick_sort(arr): | def quick_sort(arr): | ||
Riga 326: | Riga 326: | ||
return arr | return arr | ||
</syntaxhighlight></pre> | |||
|<syntaxhighlight lang="python" line="1" start="3" highlight="1,5-7"> | |<syntaxhighlight lang="python" line="1" start="3" highlight="1,5-7"> | ||
def quick_sort(arr): | def quick_sort(arr): | ||
Riga 338: | Riga 338: | ||
|<code>style</code> | |<code>style</code> | ||
|Questo attributo permette di specificare un particolare stile al blocco, per esempio <code>style="border:3px dashed blue"</code> per avere il blocco riquadrato da un bordo distante 3 pixel tratteggiato di blu. | |Questo attributo permette di specificare un particolare stile al blocco, per esempio <code>style="border:3px dashed blue"</code> per avere il blocco riquadrato da un bordo distante 3 pixel tratteggiato di blu. | ||
|< | |<pre><syntaxhighlight lang="python" style="border:3px dashed blue"> | ||
def quick_sort(arr): | |||
less = [] | less = [] | ||
Riga 348: | Riga 349: | ||
return arr | return arr | ||
</syntaxhighlight></pre> | |||
|<syntaxhighlight lang="python" line="1" style="border:3px dashed blue"> | |<syntaxhighlight lang="python" line="1" style="border:3px dashed blue"> | ||
def quick_sort(arr): | def quick_sort(arr): |