;;; wiki.el -- emacs wiki mode -*- lexical-binding: t -*- ;; Copyright (C) 2023 Free Software Foundation, Inc. ;; Author: Yuchen Pei ;; Maintainer: Yuchen Pei ;; 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 . ;;; 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