SiTeFL

The Simple Text Formatting Language


Like Markdown, but with a text-to-html tool written from scratch in Go.

Syntax:

  1| Headings : #1 #2 #3 #4 #5 #6
  2| 
  3| Bold : \*bold\*
  4| 
  5| Italics : \/italics\/
  6| 
  7| Underline : \_underline\_
  8| 
  9| Code : `this is code` or `::file`
 10| 
 11| Images : ![Alt-text::width::height](link to image)
 12| 
 13| Link : @[Display-text](link url)
 14| 
 15| NewLine : ;;
 16| 
 17| Horizontal : ---
 18| 
 19| Escape Single Character : \\
 20| 
 21| List : +


Usage:

  1| sitefl input.sfl output.html [templateHTML.html] [stylesheet.css] [true/false]
  2| 
  3| the true/false is to decide whether to preserve new lines or not


Example:

  1| sitefl index.sfl index.html defaults/templateHTML.html defaults/templateCSS.css

( This is the actual command that I'm using to generate this page )