- Add new subcommands: convert, preflight, server, templates, webpage - Migrate config from bin/config.json to ~/.config/mytoolkit - Fix expand_bookmarks to modify writer objects instead of reader - Improve md_to_pdf with CJK bookmark support - Update README and project metadata
12 lines
442 B
Python
12 lines
442 B
Python
"""MyCLI subcommands."""
|
|
|
|
from . import pdf, image, latex, video, bib, utils
|
|
from .env import env_cmd
|
|
from .ssh import ssh_cmd
|
|
from .git import git_cmd
|
|
from .server import server_cmd
|
|
from .webpage import webpage_cmd
|
|
from .self_mgmt import self_cmd, update_cmd, uninstall_cmd
|
|
|
|
__all__ = ["pdf", "image", "latex", "video", "bib", "utils", "env_cmd", "ssh_cmd", "git_cmd", "server_cmd", "webpage_cmd", "self_cmd", "update_cmd", "uninstall_cmd"]
|