This Command-Line Interface (CLI) app, named PLCT (Petlja Learning Content Tools), provides a set of commands to streamline the management and generation of learning content using Sphinx.
-
Clone the repository:
pip install plct-cli
Generate learning content using sphinx-build
. You have the option to pass specific options to Sphinx using the -so
flag. If no options are passed, they will be deduced or read from the plct_config
file.
plct build [-so <sphinx-options>] [-sf <sphinx-files>]
-so
,--sphinx-options
: Specify additional options for Sphinx-build.-sf
,--sphinx-files
: Specify filenames for Sphinx-build.
Starts a local server using sphinx-autobuild
. The root of this server corresponds to the root of the generated content. This allows you to edit files in the source directory and see the changes reflected in real-time on the server, as it will automatically refresh the content.
plct preview [-so <sphinx-options>]
-so
,--sphinx-options
: Specify additional options for Sphinx-autobuild.
Publish learning content. Provides an easy way to create doc folder that can be used as the root for git hub pages.
plct publish
Clean the generated output directory.
plct clean
Command zips all markdown files from the source directory.
plct get_markdown
The app tries to determine the command arguments (source and output directories) of the sphinx command based on the project file structure. You can also specify these configurations plct_config.yaml
.
This CLI app is licensed under the MIT License. Feel free to customize and extend it according to your needs.