Difference between revisions of "Syntaxhighlight"
From HackerNet
m |
|||
(3 intermediate revisions by 2 users 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 === | |
− | |||
{| class="wikitable" style="float:left" | {| class="wikitable" style="float:left" | ||
!Code||Language | !Code||Language | ||
Line 267: | Line 304: | ||
|- | |- | ||
|<code>xpp</code>||[[:en:Microsoft_Dynamics_AX|X++]] | |<code>xpp</code>||[[:en:Microsoft_Dynamics_AX|X++]] | ||
+ | |- | ||
+ | |<code>yaml</code>||[[:en:YAML|YAML]] | ||
|- | |- | ||
|<code>z80</code>||[[:en:Zilog Z80|ZiLOG Z80 Assembler]] | |<code>z80</code>||[[:en:Zilog Z80|ZiLOG Z80 Assembler]] | ||
|} | |} | ||
<div style="clear:both"></div> | <div style="clear:both"></div> |
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>