1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
;;; wiki.el -- emacs wiki mode -*- lexical-binding: t -*-
;; Copyright (C) 2023 Free Software Foundation, Inc.
;; Author: Yuchen Pei <id@ypei.org>
;; Maintainer: Yuchen Pei <id@ypei.org>
;; Created: 2023
;; Version: 0
;; Keywords: wiki, markup
;; Package-Requires: ((emacs "28") (generic-search "0"))
;; Package-Type: multi
;; Homepage: https://g.ypei.me/wiki.el.git
;; This file is part of wiki.el.
;; wiki.el is free software: you can redistribute it and/or modify it under
;; the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; wiki.el is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
;; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General
;; Public License for more details.
;; You should have received a copy of the GNU Affero General Public
;; License along with wiki.el. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; emacs wiki mode, a mode for wiki browsing and editing. The emphasis
;; is on reading and editing raw wiki files, while making it as
;; human-readable as possible.
;;
;; On the markup side, it supports basic font-locking in mediawiki
;; markup, with variant markup features like MixedCase wikilinks and
;; other markup languages like creole to be added. It has integration
;; with outline-mode, imenu, and a similar link handling to org mode.
;; It supports browsing remote and local sites.
;;
;; On the browsing side, it supports browsing and fetching titles from
;; wiki engines including mediawiki, oddmuse and moinmoin.
;;; Code:
(require 'wiki-markup)
(require 'wiki-engine)
(provide 'wiki)
;;; wiki.el ends here
|