Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 924 by [email protected]: libdoc.py doesn't support embedded keywords properly
http://code.google.com/p/robotframework/issues/detail?id=924

Example keyword

*** Keywords ***
I execute ${x:(a-z)} with ${y:(a-z)}
    [Documentation] blah blah
    Execute  ${x}  ${y}

Documentation

Keyword                                 Arguments       Documentation
I execute ${x:(a-z)} with ${y:(a-z)}                    blah blah


The way I imagine it to work is

Documentation

Keyword                     Arguments                 Documentation
I execute ${x} with ${y}    x(regex=(a-z))            blah blah
                            y(regex=(a-z))



Reply via email to