Giter VIP home page Giter VIP logo

Comments (2)

jeertmans avatar jeertmans commented on June 26, 2024 1

Many thanks for the thorough answer @stephenfin. Didn’t know it was a limitation from Sphinx. It’s a bit sad that I can’t have both help prompts be the same, but I guess it’s not a big problem :)

from sphinx-click.

stephenfin avatar stephenfin commented on June 26, 2024

We can't do this, at least not entirely. We're relying on directives from the Sphinx standard domain under the hood. These have certain requirements around formatting. Relevant to this issue, the option directive insists that "[o]ption argument names should be enclosed in angle brackets." (reference). We need to generate our own defaults, as you can see here. Now we could change the default metavar used for special cases such as the type=click.Path example you gave, but I don't think that extra logic is necessarily worth it: things will already look different.

For references, looking at the example in the docs, on the command line I see:

❯ python examples/commands/cli.py --help
Usage: cli.py [OPTIONS] ARG

  A sample command.

Options:
  --param TEXT                A sample option
  --another [FOO]             Another option
  --choice [Option1|Option2]  A sample option with choices
  --numeric-choice <choice>   A sample option with numeric choices
  --flag                      A boolean flag
  --config FILE
  --help                      Show this message and exit.

While in the docs I see:

--param <param>
    A sample option
--another <FOO>
    Another option
--choice <choice>
    A sample option with choices
    Options:
        Option1 | Option2
--numeric-choice <choice>
    A sample option with numeric choices
    Options:
        1 | 2 | 3
--flag
    A boolean flag
--config <config>

from sphinx-click.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.