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:54] – [Notes] nickwiki:syntax [2019/07/22 06:12] – [Images and Other Files] fixed broken image links kevinbowen
Line 132: Line 132:
 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 412: Line 412:
    
 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 but the contents between the tags in a table with the string between the brackets as table comment.
 +
 +<figure "Actions Preferences Dialog">
 +{{:xfce:xfce4-panel:actions.png?nolink&|}}
 +</figure>
 +===== Definition Lists =====
 +
 +Common to describe dialogs are definition lists. The syntax to write those is as follows:
 +
 +  ? Term 1
 +  ! This is the definition of the first term.
 +  ? Term 2
 +  ! This is the definition of the second term.
 +  ? Term 3
 +  ! Maybe the 3rd term has three possible values:
 +    ? Term 3.1
 +    ! This is the definition of the first subterm.
 +    ? Term 3.2
 +    ! This is the definition of the second irst subterm.
 +    ? Term 3.3
 +    ! This is the definition of the third subterm.
 +
 +? Term 1
 +! This is the definition of the first term.
 +? Term 2
 +! This is the definition of the second term.
 +? Term 3
 +! Maybe the 3rd term has three possible values:
 +  ? Term 3.1
 +  ! This is the definition of the first subterm.
 +  ? Term 3.2
 +  ! This is the definition of the second irst subterm.
 +  ? Term 3.3
 +  ! This is the definition of the third subterm.