| I want to be able to format Orchestrator parameter descriptions. So for the following task code I want the output to show as: ``` · foo | Enum[production, store_build, store_deploy, collectd] I want to do stuff with foo. example: foo : blah example: foo: non_blah example, foo:blahdeblahblah ``` ``` { "description": "A task to do awesome stuff", "input_method": "environment", "supports_noop": false, "parameters": { "foo": { "description": "I want to do stuff with foo. example: foo : blah, example: foo: non_blah, example, foo:blahdeblahblah", "type": "Optional[Enum[blah, non_blah, blahdeblahblah, something]]" } , "bar": { "description": "This stuff does bar stuff. example: QA: kittens, example: PR: boxes, example: NP: nothing", "type": "Optional[Enum[nothing, something, boxes, kittens]]" } , "foo_bar": { "description": "This is the name of a foo_bar, if things are foo_bar then they're really bad.", "type": "Optional[String[1]]" } } } ``` |