Difference between revisions of "Help:Editing"

From HaskellWiki
Jump to navigation Jump to search
(Add notes about differences between old and new wiki.)
(Details on getting wiki+haskell syntax highlighting when editing the haskell.org wiki)
Line 13: Line 13:
   
 
I'm sure there are others, feel free to add as you go :)
 
I'm sure there are others, feel free to add as you go :)
  +
  +
==Syntax highlighting and vim==
  +
  +
Wiki syntax highlighting with support for highlighted, embedded Haskell
  +
fragments, specifically for the [[Haskell]] wiki, is available for Vim.
  +
Save [http://www.cse.unsw.edu.au/~dons/data/haskellwiki.vim this .vim file]
  +
to your ~/.vim/syntax directory, and enable syntax highlighting
  +
dynamically with ":setf haskellwiki".
  +
  +
You can configure your browser to invoke vim with the haskellwiki syntax
  +
highlighting enabled by default, by calling vim with: -c "setf haskellwiki".
  +
[http://cgi.cse.unsw.edu.au/~dons/blog/2006/09/20#efficient_wiki_editing More details]
  +
in this blog entry.

Revision as of 04:39, 20 September 2006

General Editing Help

Take a look at wikipedia's help, which has all the details of how to format.


Differences from old wiki

If you are converting / copying a page from the old wiki, there are few differences in the formatting.

  • Numbered lists: Old wiki used 1. for numbered lists, new wiki uses the hash mark #.
  • List levels: Old wiki used spaces (AFAICT) to indent lists. New one uses multiple hashes or asterisks. e.g. #** would prefix a third level bullet item under a top level numbered, second level bulleted list.
  • Code: Old wiki used three braces to surround code. For this new wiki, delete the braces and then:
    • In a list environment, use html (<code></code>) pairs. This also usually requires <br /> tags for line breaking.
    • If you are at the main level, you can simply put a space in front of each line.
  • General formatting: The old wiki seemed to be somewhat looser in its treatment of spaces and new lines. In the new wiki, a space at the start of a line means to do as is or code type formatting. Extra blank lines between list items will restart lists.

I'm sure there are others, feel free to add as you go :)

Syntax highlighting and vim

Wiki syntax highlighting with support for highlighted, embedded Haskell fragments, specifically for the Haskell wiki, is available for Vim. Save this .vim file to your ~/.vim/syntax directory, and enable syntax highlighting dynamically with ":setf haskellwiki".

You can configure your browser to invoke vim with the haskellwiki syntax highlighting enabled by default, by calling vim with: -c "setf haskellwiki". More details in this blog entry.