autoDocstring icon indicating copy to clipboard operation
autoDocstring copied to clipboard

Custom colon : indentation for aligning lists of values

Open lovetoburnswhen opened this issue 4 years ago • 1 comments

Currently we get something like this:

[summary]
Args:
    first_arg (list): [description]
    arg123 (list): [description]
    arg3 (bool):  [description]

Is there any way (via custom templates or otherwise) to get something like

[summary]
Args:
    first_arg   (list): [description]
    arg123      (list): [description]
    arg3        (bool): [description]

lovetoburnswhen avatar Apr 21 '20 23:04 lovetoburnswhen

This isn't currently supported by the mustache templating engine. I might look into switching to handlebars.js to add extra formatting options.

NilsJPWerner avatar Apr 23 '20 18:04 NilsJPWerner