Xfce Wiki

Sub domains
 

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
wiki:syntax [2012/01/04 13:59] – [GUI Sequences] nickwiki:syntax [2019/11/11 09:12] – added table of contents links kevinbowen
Line 1: Line 1:
 ====== Formatting Syntax ====== ====== Formatting Syntax ======
 +
 +  * **[[syntax#Basic Text Formatting|Basic Text Formatting]]**
 +  * **[[syntax#Links|Links]]**
 +  * **[[syntax#Image Links|Image Links]]**
 +  * **[[syntax#Sectioning|Sectioning]]**
 +  * **[[syntax#Images and Other Files|Images and Other Files]]**
 +  * **[[syntax#Lists|Lists]]**
 +  * **[[syntax#Text Conversions|Text Conversions]]**
 +  * **[[syntax#Quoting|Quoting]]**
 +  * **[[syntax#Tables|Tables]]**
 +  * **[[syntax#No Formatting|No Formatting]]**
 +  * **[[syntax#Code Blocks|Code Blocks]]**
 +  * **[[syntax#Downloadable Code Blocks|Downloadable Code Blocks]]**
 +  * **[[syntax#Notes|Notes]]**
 +  * **[[syntax#GUI Sequences|Gui Sequences]]**
 +  * **[[syntax#Figures|Figures]]**
 +  * **[[syntax#Definition Lists|Definition Lists]]**
 +
 +----
  
 [[doku>DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing the //Edit this page// button at the top or bottom of the page. If you want to try something, just use the [[playground:playground|playground]] page. The simpler markup is easily accessible via [[doku>toolbar|quickbuttons]], too. [[doku>DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing the //Edit this page// button at the top or bottom of the page. If you want to try something, just use the [[playground:playground|playground]] page. The simpler markup is easily accessible via [[doku>toolbar|quickbuttons]], too.
Line 132: Line 151:
 Resize to given width and height((when the aspect ratio of the given width and height doesn't match that of the image, it will be cropped to the new ratio before resizing)): {{wiki:dokuwiki-128.png?200x50}} Resize to given width and height((when the aspect ratio of the given width and height doesn't match that of the image, it will be cropped to the new ratio before resizing)): {{wiki:dokuwiki-128.png?200x50}}
  
-Resized external image:           {{http://de3.php.net/images/php.gif?200x50}}+Resized external image:           {{https://www.php.net/images/php.gif?200x50}}
  
   Real size:                        {{wiki:dokuwiki-128.png}}   Real size:                        {{wiki:dokuwiki-128.png}}
   Resize to given width:            {{wiki:dokuwiki-128.png?50}}   Resize to given width:            {{wiki:dokuwiki-128.png?50}}
   Resize to given width and height: {{wiki:dokuwiki-128.png?200x50}}   Resize to given width and height: {{wiki:dokuwiki-128.png?200x50}}
-  Resized external image:           {{http://de3.php.net/images/php.gif?200x50}}+  Resized external image:           {{https://www.php.net/images/php.gif?200x50}}
  
  
Line 413: Line 432:
 You can open the preferences using {gui>Menu>Edit>Preferences...} to open the dialog or press {key>Ctrl+P}. If you click the {gui>Apply} button the settings are saved. You can open the preferences using {gui>Menu>Edit>Preferences...} to open the dialog or press {key>Ctrl+P}. If you click the {gui>Apply} button the settings are saved.
  
 +===== Figures =====
 +
 +To give images a description and make then distinct from the rest of the text, you can use the figure tag.
 +
 +  <figure "Actions Preferences Dialog">
 +  {{:xfce:xfce4-panel:actions.png?nolink&|}}
 +  </figure>
 +
 +This will place the contents between the tags in a table with the string between the brackets as a table comment.
 +
 +<figure "Actions Preferences Dialog">
 +{{:xfce:xfce4-panel:actions.png?nolink&|}}
 +</figure>
 ===== Definition Lists ===== ===== Definition Lists =====
  
Line 442: Line 474:
   ? Term 3.3   ? Term 3.3
   ! This is the definition of the third subterm.   ! This is the definition of the third subterm.
 +  
 +----
 +[[|Back To Top]]