branch: externals/greader commit 6ead65c448bc967f6154f521ee2cb59aa3f1a292 Author: Michelangelo Rodriguez <michelangelo.rodrig...@gmail.com> Commit: Michelangelo Rodriguez <michelangelo.rodrig...@gmail.com>
Headers and initial commentary added. --- greader-audiobook.el | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/greader-audiobook.el b/greader-audiobook.el index e69de29bb2..98cc0130c1 100644 --- a/greader-audiobook.el +++ b/greader-audiobook.el @@ -0,0 +1,56 @@ +;; greader-audiobook.el: Converts buffers into audio. -*- lexical-binding: t; -*- +;; +;; Filename: greader-audiobook.el +;; Description: +;; Author: Michelangelo Rodriguez +;; Maintainer: Michelangelo Rodriguez +;; <michelangelo.rodrig...@gmail.com> + +;; Created: Dom Mar 31 00:32:55 2024 (+0100) +;; Version: +;; Package-Requires: () +;; Last-Updated: +;; By: +;; Update #: 0 +;; URL: +;; Doc URL: +;; Keywords: +;; Compatibility: +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;;; Commentary: +;; greader-audiobook.el offers an interface that greader's backends +;; can use to achieve the conversion between text and sound. + +;; +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;;; Change Log: +;; +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;; This program is free software: you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or (at +;; your option) any later version. +;; +;; This program 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 +;; General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;;; Code: + + + + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; greader-audiobook.el ends here