Changes

Formatting

1,971 bytes added, 14:43, 11 September 2019
no edit summary
= Boxes =
 
=== Warning ===
{{warning|....text...}}
<pre>
{{warning|..text...}}
</pre>
{{warning|....text...}}
=== Note ===
{{note|....text...}}
<pre>
{{note|..text...}}
</pre>
{{note|....text...}}
 
=== Tip ===
{{tip|....text...}}
<pre>
{{tip|..text...}}
</pre>
{{tip|....text...}}
=== Code block ===<codesource lang="java">
class ForDemo {
public static void main(String[] args){
}
}
</source><pre><source lang="java">... code..</source></pre>   <source lang="java" line start="2" highlight="4-6"InitializeLoginResponse initializeLoginResponse = client.target(baseUrl).path("login").request(MediaType.APPLICATION_JSON) .post(Entity.json(initializeLoginRequest), InitializeLoginResponse.class); some linesome more linesand even more lines
some text
 
</source>
<pre>
<source lang="java" line start="2" highlight="4-6">
... code ..
</source>
</pre>
 
 
* C++ : cpp, c
* C# : csharp, c-sharp
* CSS : css
* PHP : php
* XML : xml, html, xhtml
* Python : python, py
* Java : java
* JavaScript : jscript, js, javascript
 
=== No format ===
<pre>This is an unformatted text</pre>
<pre>
&lt;pre>... text ...&lt;/pre>
</pre>
= Text formatting =
 
 
<span style="color: red>
színes szöveg
</span>
<pre>
<span style="color: red>
színes szöveg
</span>
</pre>
 
 
 
<s>Struck out</s>
<pre>
<s>Struck out</s>
</pre>
 
 
<ins>Inserted</ins>
<pre>
<ins>Inserted</ins>
</pre>
 
 
=Sup and subscript=
 
w<sup>2</sup>
<pre>
w<sup>2</sup>
</pre>
 
 
w<sub>2</sub>
<pre>
w<sub>2</sub>
</pre>
 
=Talbes=
 
{| class="wikitable"
|-
! scope="col"| Item
! scope="col"| Quantity
! scope="col"| Price
|-
! scope="row"| Bread
| 0.3 kg
| $0.65
|-
! scope="row"| Butter
| 0.125 kg
| $1.25
|-
! scope="row" colspan="2"| Total
| $1.90
|}
 
<pre>
{| class="wikitable"
|-
! scope="col"| Item
! scope="col"| Quantity
! scope="col"| Price
|-
! scope="row"| Bread
| 0.3 kg
| $0.65
|-
! scope="row"| Butter
| 0.125 kg
| $1.25
|-
! scope="row" colspan="2"| Total
| $1.90
|}
</pre>
 
<br>
<br>
=Image=
 
Méret megadása:
<pre>
[[File:Example.jpg|200px]]
</pre>
 
 
Méret és dupla keret:
<pre>
[[File:Example.jpg|frame|200px]]
</pre>
 
 
Mértet és keret:
<pre>
[[File:Example.jpg|border|200px]]
</pre>
 
 
Méret és körbefuttatás jobbra rendezéssel:
<pre>
... text text text
[[File:example.jpg|right|100px|caption]]
text text text ...
</pre>