Changes between Initial Version and Version 1 of UsingWikidPad

Show
Ignore:
Timestamp:
05/09/09 10:49:29 (4 years ago)
Author:
chriz (IP: 84.61.119.128)
Comment:

Migrated from old trac wiki

Legend:

Unmodified
Added
Removed
Modified
  • UsingWikidPad

    v1 v1  
     1== UsingWikidPad == 
     2 
     3WikidPad is a standalone-desktop application; it is not web-enabled or capable of allowing web viewers or visitors to modify the wiki. Rather it allows an individual computer end user with WikidPad installed the power of a wiki outline and wiki markup for organizing, outlining and linking thoughts on the desktop. WikidPad is really two applications. (1) On the "edit" tab, a text-editor, like Windows Notepad and (2) On the "preview" tab, a specialized wiki browser enabled to interpret the wikidPad (wiki-like) markup language. The program also includes several utilities for exporting and viewing and printing the wiki-like output. 
     4 
     5== "Hidden" Keybindings == 
     6 
     7The standard keybindings of the editor control used for WikidPad don't seem to be covered in WikidPad's help file. You can find them here: http://www.yellowbrain.com/stc/keymap.html (In the beginning of the table there is only obvious boring stuff, but at the end you will find some useful things.) 
     8 
     9 
     10---- 
     11 
     12= Some useful syntax rules = 
     13 
     14 
     15WikidPad syntax is similar, but not identical, to wiki syntax found in other wiki applications. The syntax is documented in the WikiPadHelp wiki, that comes with {{{WikiPad}}}. 
     16 
     17'''Escaping The {{{WikiPad}}} syntax''' 
     18 
     19You may need to escape {{{WikiPad}}} syntax characters to be able to write or print those characters (i.e. view them in the preview pane). 
     20 
     21In {{{WikiPad}}} the backslash {{{("\")}}} character is used to suppresses the special meaning of the syntax characters. That is, by prepending a {{{WikiPad}}} formatting character - like {{{"*", "_", or "["}}} - with a backslash, the character loose its special meaning, and it's read (parsed) by {{{WikiPad}}} as ordinary text. Escaping works on automatic hypertext linking of {{{CamelCase}}} wiki word, too. 
     22{{{ 
     23\_italics\_ - escapes the italics formating, and prints the _. 
     24\*asterisks\* - escapes bold face formating. Prints the *. 
     25\WikidPad - escapes automatic linking of CamelCase wiki word. 
     26\[brackets] - escapes hypertext links, prints brackets. 
     27}}} 
     28 
     29To escape all camel-case words on a page at once put  
     30 
     31{{{ 
     32[camelCaseWordsEnabled: false] 
     33}}} 
     34 
     35on this page. 
     36 
     37 
     38=== formatting === 
     39 
     40WikidPad permits the user to format his text as  
     41 
     42{{{ *bold* }}}, '''bold''' 
     43 
     44{{{ _italic_ }}}, ''italic'' 
     45 
     46=== Heading === 
     47{{{  
     48+ Heading1 
     49++ Heading2 
     50+++ Heading3 
     51++++ Heading4 
     52 }}} 
     53 
     54 
     55=== Hypertext Linking === 
     56WikidPad allows or encourages the extremely simple (or automatic) use of hypertext linking to separate content bearing pages. By breaking content into separate ''one-topic'' hyperlinked, forward and back, pages organization and ordered thinking and meaningful presentation of complex ideas is made easy. (The example is the complex information simply accessed through the WikiPedia.) 
     57 
     58'''Linking with brackets:''' Alternatively you can use this syntax: [link]  
     59 
     60Displays like this: [http://www.jhorman.org/wikidPad/ link] 
     61 
     62Another alternative is to use HTML markup:   
     63 
     64{{{ 
     65<a href="http://www.jhorman.org/wikidPad/">link</a> 
     66}}} 
     67 
     68This works with files as well as URLs. 
     69 
     70For WikiPad hotkeys (keyboard shortcuts), see KeyBindings in WikiPadHelp - that is,  the inline help that comes with WikiPad (Wiki > Help > Open WikiPadHelp). 
     71 
     72 
     73=== List === 
     74 
     75 
     76'''Unordered list:''' 
     77{{{ 
     78  * list item  
     79  * list item 
     80    * list item 
     81      * list item 
     82    * list item 
     83  * list item 
     84}}} 
     85 
     86  * list item 1 
     87  * list item 2 
     88    * list item 2.1 
     89      * list item 2.1.1 
     90    * list item 2.2 
     91  * list item 3 
     92 
     93 
     94 
     95 
     96'''Ordered list:''' 
     97{{{ 
     98  1. list item 1 
     99  2. list item 2 
     100    1. list item 2.1 
     101      2. list item 2.1.1 
     102    2. list item 2.2 
     103  3. list item 3 
     104}}} 
     105 
     106 
     107 
     108  1. list item 1 
     109  2. list item 2 
     110    1. list item 2.1 
     111      2. list item 2.1.1 
     112    2. list item 2.2 
     113  3. list item 3 
     114 
     115 
     116 
     117 
     118 
     119See the WikiPadHelp wiki for more on Bulleted Lists. 
     120 
     121 
     122=== Table === 
     123 
     124Syntax: 
     125{{{ 
     126<<| 
     127Row1Col1 | *Row1Col2* | *Row1Col2*  
     128Row2Col1 | Row2Col2  | Row2Col3  
     129Row3Col1 | Row3Col2  | [WikiPad]  
     130>> 
     131}}} 
     132 
     133Display: 
     134|| Row1Col1 || '''Row1Col2''' || '''Row1Col3''' || 
     135|| Row2Col3 || Row2Col3 || Row2Col3 || 
     136|| Row3Col3 || Row3Col3 || [[http://www.jhorman.org/wikidPad/ Wikipad]] || 
     137 
     138 
     139 
     140 
     141=== Preformated text === 
     142To preformat text (i.e. text is enclosed in <pre> tags in the preview pane) 
     143{{{ 
     144<<pre 
     145Section of text that is to be preformated. 
     146>> 
     147}}} 
     148 
     149'''Tip''': To use a monospaced font on an entire page, insert a font document attribute, and set the value to a fixed width font (like "Courier New", "Andale Mono", "Lucida Console", "Courier" ...) on the page: 
     150{{{ 
     151[font: Courier New] 
     152}}} 
     153 
     154Note that using a monospaced font is not the same as using preformated text. For more on wiki dokument attributes, see the WikiPadHelp wiki in WikiPad. 
     155 
     156=== Using images === 
     157Syntax: URL or path to image file. 
     158{{{ 
     159http://wikidpad.python-hosting.com/trac/logo.png 
     160}}} 
     161{{{ 
     162C:\Wikipad\images\wikipad_small2.jpg 
     163}}} 
     164 
     165Wikipad support HTML image tag. The syntax for local image: 
     166{{{ 
     167<img src="C:\Wikipad\images\wikipad_small2.jpg"> 
     168}}} 
     169 
     170http://images.google.no/images?q=tbn:sA6Zx8QhfF2StM:http://www.askderekscruggs.com/images/wikipad_small2.jpg 
     171 
     172(The image is from Derek Scruggs weblog on {{{WikiPad}}} [http://www.askderekscruggs.com/the-evolution-of-a-wiki-entry.html "The Evolution of a Wiki Entry"]) 
     173 
     174Syntax for using images on the WWW: 
     175{{{ 
     176 <img src="http://www.mdsci.org/images/sub/shows/imax/hubble/photo1.jpg"> 
     177}}} 
     178  
     179http://www.mdsci.org/images/sub/shows/imax/hubble/photo1.jpg 
     180 
     181This image is from [http://www.mdsci.org/shows/imax/hubble.html Maryland Science Center] 
     182 
     183---- 
     184 
     185a work-in-progress; feel free to correct, edit and add. 
     186