library-build-system
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:Automated system to prepare html, pdf and other ebook formats from plain text files.
# E-Book Library Build System #

## PART I ##

### Introduction ###

This system is designed to store e-books in **plain text format** and to
generate readable html, pdf and other formats from it automatically. In
order to accomplish this, the text files need to be formatted appropriately.
The aim of this system is to ensure that the text is readable by itself and
that other formats build on the text document and add appropriate features.

Since the books are stored in UTF-8 encoded text, this is suitable only for
straight text. There is no provision for anything more than the most *simple*
formatting. It is possible, therefore that some books might require
preprocessing and might lose some formatting.

### Requirements ###

The following programs and libraries must be installed for proper
functioning of this system:

 1. python
 2. calibre (needed for mobibook and ePub)

On Ubuntu these may be installed by running

    # Run this on the command line
    $ sudo apt-get install python calibre

## PART II ##

### Books ###

All books to be built must be in UTF-8 encoded text and placed in the `mkd/`
folder. The books should be formatted in
[markdown](http://daringfireball.net/projects/markdown/).
See [their syntax page](http://daringfireball.net/projects/markdown/syntax)
to see how to format your books. You can also follow the example `readme.mkd`
in the `mkd` folder.

Each book must contain on it's last line some metadata about the book in JSON
format. The minimum metadata required is `title` and `author`. In order to
prevent the metadata from appearing in the ebooks, it should be placed in an
html comment.

The possible metadata tags are:

 * `author-sort` :: String to be used when sorting by author.
 * `authors` :: Ampersand separated list of authors.
 * `comments` :: Comments about the books contents.
 * `isbn` :: ISBN of the published book.
 * `pubdate` :: Date of original publication.
 * `publisher` :: Publisher of the book.
 * `rating` :: Critical rating of the book (between 1 and 5).
 * `series` :: The name of the series to which the book belongs.
 * `series-index` :: The position of the book in the series.
 * `tags` :: Tags that describe the book (possibly for searching in the future).
 * `title` :: The title of the book.
 * `title-sort` :: The title of the book to be used for sorting.

For example, the last line of "The Adventures of Sherlock Holmes" would look
like:

    

Each book may have a cover in the `cover` folder with the same basename and a
`jpg` extension.

### Usage ###

Run the python script `make.py` to generate all the formats from the markdown
source.

    # Run this on the command line
    $ python make.py

This will take each markdown file in the `mkd` folder and convert it into all
available formats. Like any build system, if the target's modification date
is after that of the source, it is skipped. You can force a book to be
regenerated by changing it's modification date using the `touch` command.

    # Run this on the command line
    $ touch "mkd/file to be regenerated.mkd"



本源码包内暂不包含可直接显示的源代码文件,请下载源码包。