Difference between revisions of "Mediawiki.el"

From WikEmacs
Jump to navigation Jump to search
(base)
Line 1: Line 1:
 
'''Mediawiki.el''' is a package to help add content to any mediawiki
 
'''Mediawiki.el''' is a package to help add content to any mediawiki
site (including this site).
+
site (including this site). It comes with a [[Major Mode]] to support
 +
editing mediawiki markup.
 +
 
 +
= Installation =
 +
 
 +
From [[el-get]]
 +
just call `M-x el-get-install` `RET` `mediawiki`.
 +
 
 +
From [[Elpa]]
 +
 
 +
 
 +
= Basic setup =
 +
 
 +
Add mediawiki site to the {{Variable|mediawiki-site-alist}}.
 +
<source lang="lisp">
 +
(add-to-list 'mediawiki-site-alist
 +
  '("wikemacs" "http://wikemacs.org/w/" "kindahero" "PASSWORD" "Main Page"))
 +
</source>
 +
 
 +
password and login ID information can be in [[.autinfo]] file in the
 +
home directory.
 +
 
 +
= How To =
 +
 
 +
once you added your site to {{Variable|mediawiki-site-alist}} then
 +
call to {{Function|mediawiki-open}} fetch a page and start editing it.
 +
 
 +
It has support to drafts support.
 +
 
 +
= Helpful keybindings =
 +
{{Keys|C-c C-c}}
 +
save the page on to the website and buries.
 +
 
 +
= Project Pages =
 +
 
 +
 
 +
 
 +
[[Category:Wikemacs]]

Revision as of 11:02, 28 March 2012

Mediawiki.el is a package to help add content to any mediawiki site (including this site). It comes with a Major Mode to support editing mediawiki markup.

Installation

From el-get just call `M-x el-get-install` `RET` `mediawiki`.

From Elpa


Basic setup

Add mediawiki site to the mediawiki-site-alist.

(add-to-list 'mediawiki-site-alist
   '("wikemacs" "http://wikemacs.org/w/" "kindahero" "PASSWORD" "Main Page"))

password and login ID information can be in .autinfo file in the home directory.

How To

once you added your site to mediawiki-site-alist then call to mediawiki-open fetch a page and start editing it.

It has support to drafts support.

Helpful keybindings

[C-c C-c] save the page on to the website and buries.

Project Pages