Comment 7 for bug 1173426

Revision history for this message
Doug Smythies (dsmythies) wrote :

The issue of this bug report affects all official Ubuntu documentation.

Serverguide: DocBook source code, as described in previous entries, tag pairs of <kaycap>...</keycap> compile into html code of <span class="key keycap">...</span>

Ubuntu-docs (Desktop): Mallard code, tag pairs of <key>...</key> compile into html code of <span class=" key"><kbd>...</kbd></span>

Both also end up with a .css file based on the previously mentioned file, and they want to find a "span.key" entry to know what to do. It is not there, so they do nothing.

The file yelp-xsl/xslt/common/html.xsl requires an addition of these lines (slightly different than what I wrote in a previous post):

span.key {
  font-weight: bold;
}

This issue begs the question: How many more expected .css entries are missing?