Syntaxhighlight
From HackerNet
För att highlighta kod måste man använda source editorn och syntaxhighlight.
1 def hello_world():
2 print("Hello Hackernet")
3
4 hello_world()
Ser ut så här i editorn:
<syntaxhighlight lang="Python" line>
def hello_world():
print("Hello Hackernet")
hello_world()
</syntaxhighlight>
Parametrar
line
Gör så att du får siffror till vänster om din kod.
1 def hello_world():
2 print("Hello Hackernet")
<syntaxhighlight lang="Python" line>
def hello_world():
print("Hello Hackernet")
</syntaxhighlight>
start
Används tillsammans med line
för att starta på en annan line än 1.
69 def hello_world():
70 print("Hello Hackernet")
<syntaxhighlight lang="Python" line start="69">
def hello_world():
print("Hello Hackernet")
</syntaxhighlight>
highlight
Används för att highlighta en eller flera rader, hightlight="1,2"
eller highlight="5-7"
1 def hello_world():
2 print("Hello Hackernet")
<syntaxhighlight lang="Python" line highlight=2>
def hello_world():
print("Hello Hackernet")
</syntaxhighlight>