We would like to add a feature that allows a user to introspect xacro files. This way, we can query what arguments are available and prompt these to the user. We could also add additional validation to the defined arguments and some documentation. What are your thoughts about this? An example:
<xacro:arg name="argument1" default="value1" doc="Argument 1 doc" choices="value1, value2, value3" />
arguments:
- name: argument 1
- default: value1
- choices: [value1, value2, value3]
- doc: Argument 1 doc
We would like to add a feature that allows a user to introspect xacro files. This way, we can query what arguments are available and prompt these to the user. We could also add additional validation to the defined arguments and some documentation. What are your thoughts about this? An example: