Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@class missing from choicetable XHTML output #1889

Closed
AirQuick opened this issue Apr 5, 2015 · 0 comments
Closed

@class missing from choicetable XHTML output #1889

AirQuick opened this issue Apr 5, 2015 · 0 comments
Assignees
Labels
bug plugin/xhtml Issue relate to XHTML plug-in priority/low Low priority issue
Milestone

Comments

@AirQuick
Copy link

AirQuick commented Apr 5, 2015

Case 1

<choicetable>
    <chrow>
        <choption>opt</choption>
        <chdesc>desc</chdesc>
    </chrow>
</choicetable>
XHTML output:
<thead>
    <tr>
        <th align="left" id="d27e17-option" valign="bottom">Option</th>
        <th align="left" id="d27e17-desc" valign="bottom">Description</th>
    </tr>
</thead>
Problem:
  • <tr> and <th> do not have @Class.

Case 2

<choicetable>
    <chhead>
        <choptionhd>opthd</choptionhd>
        <chdeschd>deschd</chdeschd>
    </chhead>
    <chrow>
        <choption>opt</choption>
        <chdesc>desc</chdesc>
    </chrow>
</choicetable>
XHTML output:
<thead>
    <tr class="sthead chhead">
        <th align="left" id="d27e17-option" valign="bottom">opthd</th>
        <th align="left" id="d27e17-desc" valign="bottom">deschd</th>
    </tr>
</thead>
Problem:

Expected

In both cases I would expect these @Class'es:

<thead>
    <tr class="sthead chhead">
        <th align="left" class="stentry choptionhd" id="d27e17-option" valign="bottom">Option</th>
        <th align="left" class="stentry chdeschd" id="d27e17-desc" valign="bottom">Description</th>
    </tr>
</thead>

DITA-OT

2.1 M1

@jelovirt jelovirt added bug plugin/xhtml Issue relate to XHTML plug-in priority/low Low priority issue labels Apr 5, 2015
@jelovirt jelovirt self-assigned this Apr 8, 2015
@jelovirt jelovirt added this to the 2.1.0-M2 milestone Apr 8, 2015
jelovirt added a commit that referenced this issue Apr 8, 2015
Improve code extensibility and HTML output.
@jelovirt jelovirt closed this as completed Apr 8, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug plugin/xhtml Issue relate to XHTML plug-in priority/low Low priority issue
Projects
None yet
Development

No branches or pull requests

2 participants