From 28a390e785a8c694d422979d04161814a4907e21 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 15 Feb 2014 13:55:59 +0100 Subject: [PATCH] Change default article rendering function A lot of articles are HTML-based and the `shr' library, which is also used by GNU, renders HTML well. It is also included with Emacs (at least in v24.3+). --- avandu.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avandu.el b/avandu.el index 506fa47..41f37ca 100644 --- a/avandu.el +++ b/avandu.el @@ -121,7 +121,7 @@ :group 'avandu) ;; User options -(defcustom avandu-article-render-function nil +(defcustom avandu-article-render-function #'shr-render-region "A function to call that will render the content of an article." :group 'avandu :type 'function)