Skip to content

Commit

Permalink
Merge pull request #323 from quasar-team/OPCUA-3201_add_markdown_docu…
Browse files Browse the repository at this point in the history
…mentation_in_quasar_help

OPCUA 3201 Adding markdown documentation in the help
  • Loading branch information
parasxos authored Sep 9, 2024
2 parents ef0e2e1 + cf99070 commit 110d9ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion FrameworkInternals/parser_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,13 @@ def formatter_class(prog): return QuasarArgsHelpFormatter(
# create the parser for the "generate config_doc" command
generate_config_doc_subparser = generate_subparsers.add_parser(
'config_doc', help='Generates documentation of the Configuration Schema. Such a documentation is a HTML document with description of all fields that might appear in the configuration')
generate_config_doc_subparser = generate_subparsers.add_parser(
'config_doc_md', help='Generates documentation of the Configuration Schema. Such a documentation is a Markdown document with description of all fields that might appear in the configuration')
# create the parser for the "generate as_doc" command
generate_as_doc_subparser = generate_subparsers.add_parser(
'as_doc', help='Generates address space documentation (the documentation of all OPCUA ObjectTypes, Variables, etc… ) and places it in Documentation/AddressSpaceDoc.html')
'as_doc', help='Generates address space documentation in a HTML document (the documentation of all OPCUA ObjectTypes, Variables, etc… ) and places it in Documentation/AddressSpaceDoc.html')
generate_as_doc_subparser = generate_subparsers.add_parser(
'as_doc_md', help='Generates address space documentation in a markdown document (the documentation of all OPCUA ObjectTypes, Variables, etc… ) and places it in Documentation/AddressSpaceDoc.md')
# create the parser for the "generate diagram" command
generate_diagram_subparser = generate_subparsers.add_parser(
'diagram', help='Creates a quasar design diagram for this project')
Expand Down

0 comments on commit 110d9ad

Please sign in to comment.