Difference between revisions of "Formatting"

From iagent
Jump to: navigation, search
(Created page with " <div class="alert alert-success"> ===='''Important'''==== Important </div> <pre> <div class="alert alert-success"> ===='''Important'''==== Important </div> </pre> <div class...")
 
(Syntax Highlighting)
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
  
 +
This wiki uses [https://tweeki.thai-land.at/wiki/Welcome | Tweeki] skin based on Bootstrap.
 +
The formatting is somewhat similar to Github pages. Below are some cut and paste snippets for making notifications and stuff on the wiki.
  
 +
== Notes==
 
<div class="alert alert-success">
 
<div class="alert alert-success">
 
===='''Important'''====
 
===='''Important'''====
Line 20: Line 23:
 
===='''Info'''====
 
===='''Info'''====
 
Info
 
Info
 +
</div>
 +
</pre>
 +
 +
<div class="alert alert-danger">
 +
===='''Warning'''====
 +
warning
 +
</div>
 +
 +
<pre>
 +
<div class="alert alert-danger">
 +
===='''Warning'''====
 +
warning
 +
</div>
 +
</pre>
 +
 +
 +
<div class="alert alert-warning">
 +
===='''Note'''====
 +
note
 +
</div>
 +
 +
<pre>
 +
<div class="alert alert-warning">
 +
===='''Note'''====
 +
note
 +
</div>
 +
</pre>
 +
 +
== Syntax Highlighting ==
 +
<syntaxhighlight lang="Python" line='line'>
 +
Syntax_highlight =True
 +
</syntaxhighlight>
 +
 +
<pre>
 +
<syntaxhighlight lang="Python" line='line'>
 +
Syntax_highlight =True
 +
</syntaxhighlight>
 +
</pre>
 +
 +
== Full width images ==
 +
<pre>
 +
<div class="res-img">
 +
[[File:somefile.png]]
 
</div>
 
</div>
 
</pre>
 
</pre>

Revision as of 18:18, 22 January 2022

This wiki uses | Tweeki skin based on Bootstrap. The formatting is somewhat similar to Github pages. Below are some cut and paste snippets for making notifications and stuff on the wiki.

Notes

Important

Important

<div class="alert alert-success">
===='''Important'''====
Important
</div>

Info

Info

<div class="alert alert-info">
===='''Info'''====
Info
</div>

Warning

warning

<div class="alert alert-danger">
===='''Warning'''====
warning
</div>


Note

note

<div class="alert alert-warning">
===='''Note'''====
note
</div>

Syntax Highlighting

1 Syntax_highlight =True
<syntaxhighlight lang="Python" line='line'>
Syntax_highlight =True
</syntaxhighlight>

Full width images

<div class="res-img">
[[File:somefile.png]]
</div>