Difference between revisions of "Syntaxhighlight"
From HackerNet
Helikopter (talk | contribs) m (yaml) |
m |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | För att highlighta | + | För att highlighta kod måste man använda source editorn och syntaxhighlight. |
+ | <syntaxhighlight lang="Python" line> | ||
+ | def hello_world(): | ||
+ | print("Hello Hackernet") | ||
− | < | + | hello_world() |
+ | </syntaxhighlight> | ||
+ | Ser ut så här i editorn: | ||
+ | <source lang="Python"> | ||
+ | <syntaxhighlight lang="Python" line> | ||
+ | def hello_world(): | ||
+ | print("Hello Hackernet") | ||
− | <syntaxhighlight lang=" | + | hello_world() |
− | + | </syntaxhighlight> | |
− | + | </source> | |
− | + | ===Parametrar=== | |
− | + | ====line==== | |
− | + | Gör så att du får siffror till vänster om din kod. | |
− | + | <syntaxhighlight lang="Python" line> | |
− | + | def hello_world(): | |
− | + | print("Hello Hackernet") | |
− | </ | + | </syntaxhighlight> |
+ | <source lang="Python"> | ||
+ | <syntaxhighlight lang="Python" line> | ||
+ | def hello_world(): | ||
+ | print("Hello Hackernet") | ||
+ | </syntaxhighlight> | ||
+ | </source> | ||
+ | ====start==== | ||
+ | Används tillsammans med <code>line</code> för att starta på en annan line än 1. | ||
+ | <syntaxhighlight lang="Python" line start="69"> | ||
+ | def hello_world(): | ||
+ | print("Hello Hackernet") | ||
+ | </syntaxhighlight> | ||
+ | <source lang="Python"> | ||
+ | <syntaxhighlight lang="Python" line start="69"> | ||
+ | def hello_world(): | ||
+ | print("Hello Hackernet") | ||
+ | </syntaxhighlight> | ||
+ | </source> | ||
+ | ====highlight==== | ||
+ | Används för att highlighta en eller flera rader, <code>hightlight="1,2"</code> eller <code>highlight="5-7"</code> | ||
+ | <syntaxhighlight lang="Python" line highlight=2> | ||
+ | def hello_world(): | ||
+ | print("Hello Hackernet") | ||
+ | </syntaxhighlight> | ||
+ | <source lang="Python"> | ||
+ | <syntaxhighlight lang="Python" line highlight=2> | ||
+ | def hello_world(): | ||
+ | print("Hello Hackernet") | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | </source> | ||
=== Supportade Språk === | === Supportade Språk === |
Latest revision as of 22:18, 23 March 2019
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>