Caption Tag is not supported in RuleHelpXamlTranslatorFactory #5014
Labels
Area: Education
Technical
More substantial technical task to reduce technical debt / cleanup / simplify / refactor
Html tag is used in some rules (e.g. "cpp.S1232") but not supported in RuleHelpXamlTranslatorFactory so those rules won't be translated to xaml correctly.
The caption tag is defined as the child of the table tag. The header can be either added by having a StackPanel with the TextBlock above (requires lookahead in Html to Xaml translation), or by adding extra row with merged cells (example)
Update:
Not seems to possible to have
But caption is defined before column definition and after table definition in html, this would require us to have lookahead/lookbehind in html parsing OR have a mechanism to defer tag conversion (currently we produce xaml for an html tag as soon as we see it).
The text was updated successfully, but these errors were encountered: