
Article tag information:
______________________________________________________________________________

The .shn format is similar to html, so it shouldn't be hard to use.
Here's the things implemented so far:

Color tags:
 <col>R,G,B</col>                                  Sets current textcolor.
 <bcol>R,G,B</bcol>                                Sets the backgroundcolor of the whole article.
 <lcol>R,G,B</lcol>                                Sets the color of the link lines.

Alignment tags:
 <fix>NUMBER</fix>                                 Sets a spacing.
 <pos=NUMBER>                                      Sets horisontal position in pixels for the current row.
 <right>                                           Sets text position as much to the right as possible for the current row.
 <center>                                          Sets text position centered for the current row.
 <left>                                            Sets text position 5 pixels in from the left.

Image tags:
 <background>X,Y,FILENAME</background>             Sets a background image.
 <img>X,Y,FILENAME,ALIGN</img>                     Includes a bitmap image. 

Other tags:
 <font>FONTNAME</font>                             Sets the font.
 <link=ARTICLE.SHN>LINKTEXT</link>                 Creates a link.
 <newstyle=NAME,FONT,r,g,b>                        Creates a text style.
 <style=NAME>                                      Sets a text style.
 <itag>text</itag>                                 Ignores all other located between the two tags.
 <-- text -->                                      Remark
______________________________________________________________________________

Article tag help:

______________________________________________________________________________

 <col>R,G,B</col>
  Sets text color.
  Red,Green,Blue
______________________________________________________________________________

 <bcol>R,G,B</bcol>
  Sets background color.
  Red,Green,Blue
______________________________________________________________________________

 <lcol>R,G,B</lcol> 
  Sets underlined links color.
  Red,Green,Blue
______________________________________________________________________________

 <link=ARTICLE.SHN>LINKTEXT</link> 
  Creates a link to another article.
  ARTICLE.SHN=filename.
  LINKTEXT=the text that will be written in the article, and
           underlined when the mouse hovers over it.

  Note that if you follow a link, and press RMB or ESC, you'll get 
  back to the article from where you pressed the link.
______________________________________________________________________________

 <background>X,Y,FILENAME</background> 
  Sets background picture.
  X=Horisontal Resolution of the picture.
  Y=Horisontal Resolution of the picture.
  FILENAME=filename. .pcx or .jpg files at the moment.
______________________________________________________________________________

 <img>X,Y,FILENAME,ALIGN</img>
  If ALIGN = -1, the current pos of the picture in the text remains. 
  ALIGN could also be: RIGHT,LEFT,CENTER.
  Masking can be done using the col R=255 G=0 B=255. 
  Masking wont look good if you use a jepg file as jpeg
  packs the colors.
______________________________________________________________________________

 <font>FONTNAME</font>
  Activates a certain font. This font is active until a new font tag occurs, 
  or the switch of an article.
  The fonts available are: Arial, Arial Small, Arial Large, Arial Straigt and Dos.
______________________________________________________________________________

 <fix>NUMBER</fix>
  Forces a spacing.
  Fixed spacing 0 equals automatic spacing.
______________________________________________________________________________

 <pos=NUMBER>
  Sets x position in pixels for the text that's coming on the 
  same line, after the tag.
______________________________________________________________________________

 <newstyle=NAME,FONT,r,g,b>
  Creates a new style.
  To use the style later on type <style=NAME>, and these settings will be activated.
  When a style has been created, it's saved and can be used in any article on.
______________________________________________________________________________

 <right>
 <center>
 <left>
  Sets alignment for the current row. Doesn't work with tags on the 
  same row yet. Sorry :D
______________________________________________________________________________
