Skip to content

Entities in the XML message definition are handled incorrectly. #439

@pv42

Description

@pv42

Any xml entity in text splits the text event up. The xml

<param index="3" label="Pass Radius" units="m">0 to pass through the WP, if &gt; 0 radius to pass by WP. Positive value for clockwise orbit, negative value for counter-clockwise orbit. Allows trajectory control.</param>

emits the following events:

  • Event::Start(_)
  • Event::Text("0 to pass through the WP, if ")
  • Event::GeneralRef("&gt;")
  • Event::Text(" 0 radius to pass by WP. [...]")
  • Event::End(_)

This causes the generated documentation for any text that contains a such an entity to only contain the last event. In the case above it would be "0 radius to pass by WP. Positive value for clockwise orbit, negative value for counter-clockwise orbit. Allows trajectory control".

There is currently happening for example for PARAM_REQUEST_READ_DATA.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions