aboutsummaryrefslogtreecommitdiff
path: root/wiki-engine.el
diff options
context:
space:
mode:
authorYuchen Pei <id@ypei.org>2023-07-10 11:23:31 +1000
committerYuchen Pei <id@ypei.org>2023-07-10 11:23:31 +1000
commit49fc5fa02bf06ccc419a8ec26abe3dcdf61a57b0 (patch)
treea184cb3b1cee2bb95f6cce625b88f1f2af7bfbf8 /wiki-engine.el
parent383b7a22e584dd9c5990dcd1b0cdf48f24ffe962 (diff)
Fixing stacking of multiple fonts
There may be italics in header and links, say
Diffstat (limited to 'wiki-engine.el')
-rw-r--r--wiki-engine.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/wiki-engine.el b/wiki-engine.el
index da4dfb3..a201c72 100644
--- a/wiki-engine.el
+++ b/wiki-engine.el
@@ -89,5 +89,15 @@ The site name is passed as a symbol WIKI-SITE."
(defun-wiki-fetchers)
+(defun wiki-open-url (url)
+ "Open the wiki corresponding to URL.
+
+If URL points to html title, open the corresponding raw title.
+If URL points to a raw title, open directly.
+If URL points to a host, assume it is mediawiki try to open main page."
+ (interactive "sURL: ")
+
+ )
+
(provide 'wiki-engine)
;;; wiki-engine.el ends here