summaryrefslogtreecommitdiffstats
path: root/lib/output/ebook/options.js
blob: ea7b8b497d18546281b91baffbab05f2ddfa05f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var Immutable = require('immutable');

var Options = Immutable.Record({
    // Root folder for the output
    root:               String(),

    // Prefix for generation
    prefix:             String('ebook'),

    // Format to generate using ebook-convert
    format:             String(),

    // Force use of absolute urls ("index.html" instead of "/")
    directoryIndex:     Boolean(false)
});

module.exports = Options;