Skip to content

Easily create downloadable epub files with javascript

License

Notifications You must be signed in to change notification settings

oxorp/js-epub-maker

 
 

Repository files navigation

epub-maker2

Easily create epub files with javascript

npm i epub-maker2

fork from epub-maker, old README

demo

EpubMaker.libSlugify

import { slugify } from 'transliteration';
// global change
EpubMaker.libSlugify = slugify

// or only runtime
let epub = new EpubMaker({
    libSlugify: slugify,
});

// if can't handle will return '';
epub.slugify('你好,世界');

// if can't handle will return hashSum;
epub.slugifyWithFallback('你好,世界');
export interface ISlugify
{
	(input: string, ...argv): string
}

downloadEpub

this is old epub-maker api, but we split this to optional

u need install by self npm i epub-maker2 file-saver

import EpubMaker from 'epub-maker2';
import 'epub-maker2/src/plugin/file-saver';

let epub = new EpubMaker();

// ...

eoub.downloadEpub(callback, options);

cli

link

About

Easily create downloadable epub files with javascript

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 78.5%
  • HTML 11.7%
  • CSS 9.8%