emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/webfeeder f34e3d6 07/22: readme.org: Fix rename feed-bu


From: Pierre Neidhardt
Subject: [elpa] externals/webfeeder f34e3d6 07/22: readme.org: Fix rename feed-builder -> webfeeder
Date: Tue, 26 Mar 2019 07:10:01 -0400 (EDT)

branch: externals/webfeeder
commit f34e3d67e530aa58f95ff5a8ee0333ea0a75ef5a
Author: Pierre Neidhardt <address@hidden>
Commit: Pierre Neidhardt <address@hidden>

    readme.org: Fix rename feed-builder -> webfeeder
---
 readme.org | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/readme.org b/readme.org
index 2bd99e9..6c4c6a3 100644
--- a/readme.org
+++ b/readme.org
@@ -9,16 +9,16 @@ general.
 
 The various elements of the HTML input are parsed with customizable functions.
 For instance, Webfeeder offers two functions to parse the title:
-~feed-builder-title-libxml~ (using libxml if your Emacs is linked against it)
-and the less reliable ~feed-builder-title-default~.
-Feel free to write you own function and bind ~feed-builder-title-function~
+~webfeeder-title-libxml~ (using libxml if your Emacs is linked against it)
+and the less reliable ~webfeeder-title-default~.
+Feel free to write you own function and bind ~webfeeder-title-function~
 before generating the feeds.
 
 The generated feeds should be valid on https://validator.w3.org/feed/.  If not,
 it's a bug, please report.
 
 The full list of customizable functions is documented in
-~feed-builder-html-files-to-items~.
+~webfeeder-html-files-to-items~.
 
 * Installation
 
@@ -42,7 +42,7 @@ without libxml is also provided.
 - Build an Atom feed:
 
 #+begin_src elisp
-(feed-builder-build
+(webfeeder-build
  "atom.xml"
  "./public"
  "https://example.org/";
@@ -54,14 +54,14 @@ without libxml is also provided.
 - To build an RSS feed, use the RSS builder:
 
 #+begin_src elisp
-(feed-builder-build
+(webfeeder-build
  "rss.xml"
  "./public"
  "https://example.org/";
  '("post1.html" "post2.html" "post3.html")
  :title "My homepage"
  :description "A collection of articles in RSS"
- :builder 'feed-builder-make-rss)
+ :builder 'webfeeder-make-rss)
 #+end_src
 
 - Use a custom title query function:
@@ -77,15 +77,15 @@ without libxml is also provided.
           nil
         title))))
 
-(let ((feed-builder-title-function 'my-title-query))
-  (feed-builder-build
+(let ((webfeeder-title-function 'my-title-query))
+  (webfeeder-build
    ; ...))
 #+end_src
 
 - Limit the feed to 20 articles:
 
 #+begin_src elisp
-(feed-builder-build
+(webfeeder-build
  ; ...
  :max-entries 20)
 #+end_src
@@ -94,11 +94,11 @@ without libxml is also provided.
 
 #+begin_src elisp
 (defun item-author-is-Alice-p (item)
-  (string= (feed-builder-item-author item) "Alice")
+  (string= (webfeeder-item-author item) "Alice")
 
-(feed-builder-build
+(webfeeder-build
  ; ...
  :predicate 'item-author-is-Alice-p)
 #+end_src
 
-See the documentation of ~feed-builder-build~ for more options.
+See the documentation of ~webfeeder-build~ for more options.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]