Markdown

Generally speaking, it is difficult to document the text formatting rules for Oddmuse users, because most of the rules are configurable. Every wiki can be different. Hopefully the administrator of your wiki is using Creole or Markdown.

== Creole ==

Creole is a common wiki markup language to be used across different wikis. It enables wiki users to transfer content seamlessly across wikis, and it enables novice users to contribute more easily.

Use the following cheat sheet:

[[image:Creole Cheat Sheet|Creole Cheat Sheet|http://www.wikicreole.org/]]

The place to discuss this extension is the page [[Creole_Markup_Extension?]].

== Markdown ==

Markdown is a different markup language that has grown in importance at a steady pace.

Use the following cheat sheet:

[[image:Markdown Cheat Sheet|Markdown Cheat Sheet|http://packetlife.net/media/library/16/Markdown.pdf|More at Daring Fireball|https://daringfireball.net/projects/markdown/basics]]

The place to discuss this extension is the page [[Markdown_Rule_Extension?]].

<pre><code>

Dansie Shopping Cart

Installation

Unzip -a Cart.Zip (-a will remove DOS formatting)

Chmod your cart.pl script 755. Chmod the shopperid.dat file 777

Make sure your cgi-bin's permissions are set to 755.

Modify vars.dat

— o0o —

Test http://buy-the-best.com/trade/cart.pl?test

Database Search https://buy-the-best.com/trade/cart.pl?db=stuff.dat

Homeschool Book Search https://buy-the-best.com/trade/cart.pl?db=books.db

Summary - https://buy-the-best.com/trade/cart.pl?summary

Vars - http://buy-the-best.com/trade/cart.pl?vars

— o0o —

Created 9/26/2002 SPhelan, extracted from books.cfg for use in both dbman and the custom catalog.pl

Database Definition

--------------------------------------------------------

Definition of your database. Format is

field_name => ['position', 'field_type', 'form-length', 'maxlength', 'not_null', 'default', 'valid_expr']

%db_def = ( ID => [0, 'numer' , 5, 8, 1, '', ''], ISBN => [1, 'numer', 13, 13, 0, '', ''], Category => [2, 'alpha', 0, 255, 1, '', ''], Author => [3, 'alpha', 50, 60, 0, '', ''], Title => [4, 'alpha', 50, 255, 1, '', ''], Publisher => [5, 'alpha', 50, 255, 0, '', ''], Description => [6, 'alpha', '60x5', 1900, 0, '', ''], Brief_Desc => [7, 'numer', 66, 100, 0, '', ''], Price => [8, 'numer', 7, 7, 1, '', '.+\...'], Picture => [9, 'alpha', 50, 50, 0, 'no-image.jpg', ''], Dimensions => [10, 'numer', 50, 100, 0, 'Dimensions in (inches):', ''], Weight_Kg => [11, 'numer', 2, 2, 0, '2', ''], Custom1 => [12, 'numer', '50x2', 500, 0, '', ''], Custom2 => [13, 'alpha', 50, 100, 0, '', ''], Authority => [14, 'alpha', 10, 10, 0, '', ''], nbsp => [15, 'alpha', 1, 1, 0, '&nbsp', ''],

      );

— o0o —

6 Position of category in your data files -->1

7 Position of stock/item number -->2

8 Position of the name of the item -->3

9 Position of description of the item -->4

10 Position of the price of the item -->5

11 Position of the shipping weight/value of the item -->6

12 Position of the name of the thumb-nail image of the item -->7

13 Positions of additional fields of info -->8,9,10,11,12,13,14,15

Changes Start

6 Position of category in your data files -->3 7 Position of stock/item number -->0 8 Position of the name of the item -->1 9 Position of description of the item -->7 10 Position of the price of the item -->9 11 Position of the shipping weight/value of the item -->12 12 Position of the name of the thumb-nail image of the item -->10 13 Positions of additional fields of info -->16,5,4,13,16,6

Changes End

</code></pre>