We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cp-tools genhtml
Currently, cp-tools has the commands genpdf and gentex, where the files are compiled for PDF and LaTEX respectively.
genpdf
gentex
It is desirable that the genhtml command compiles the files into HTML files, so that the problem can be viewed in a browser
genhtml
This CLI command should work in the same way as genpdf and gentex commands.
The parameters for this command are:
-h / --help
-b / --label
A
-l / --list
-c / --class
plain
-g / --lang
pt_BR
-o / --output
problem.html
-t / --tutorial
--no_autor
--no_contest
The text was updated successfully, but these errors were encountered:
cp-tools genhtml command
edsomjr
No branches or pull requests
Implement the
cp-tools genhtml
commandDescription:
Currently, cp-tools has the commands
genpdf
andgentex
, where the files are compiled for PDF and LaTEX respectively.It is desirable that the
genhtml
command compiles the files into HTML files, so that the problem can be viewed in a browserThis CLI command should work in the same way as
genpdf
andgentex
commands.The parameters for this command are:
-h / --help
to print to the terminal the parameters supported by the command-b / --label
to define the problem labels. If omitted, the default label isA
-l / --list
to list all document classes (templates) available for use-c / --class
to define the class (template) of the document that will be used in the compilation. If omitted, the default template will beplain
-g / --lang
to define the language of the document. If omitted, the default language will bept_BR
-o / --output
to define the name of the output file that will be generated. If omitted, the output file will beproblem.html
-t / --tutorial
to generate the problem solution file (in html, of course)--no_autor
to omit the problem author in the output file--no_contest
to omit the problem contest in the output fileAcceptance criteria:
Tasks:
The text was updated successfully, but these errors were encountered: