12345678910111213141516171819202122232425 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2023/05/02 20:50:44
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : build website or pdf book
- '''
- import os
- def build_pdf():
- '''
- build pdf
- '''
- os.system('gitbook pdf .')
- def build_web():
- '''
- build web
- '''
- os.system('gitbook build .')
- if __name__=='__main__':
- build_pdf()
|