You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
363 B
16 lines
363 B
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from utils import loadBook
|
|
from utils import txtRelease
|
|
from utils import jsonRelease
|
|
from utils import htmlRelease
|
|
from utils import gitbookRelease
|
|
|
|
|
|
metadata, content = loadBook('rc-5')
|
|
|
|
txtRelease(metadata, content)
|
|
jsonRelease(metadata, content)
|
|
htmlRelease(metadata, content)
|
|
gitbookRelease(metadata, content)
|
|
|