summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/docbookvisitor.cpp4
-rw-r--r--src/doctokenizer.l2
-rw-r--r--src/htmldocvisitor.cpp6
3 files changed, 11 insertions, 1 deletions
diff --git a/src/docbookvisitor.cpp b/src/docbookvisitor.cpp
index a42a895..ce3a845 100644
--- a/src/docbookvisitor.cpp
+++ b/src/docbookvisitor.cpp
@@ -1105,6 +1105,10 @@ DB_VIS_C
{
// just skip it
}
+ else if (opt->name=="nowrap" && opt->value.isEmpty())
+ {
+ m_t << " " << opt->name << "='nowrap'";
+ }
else
{
m_t << " " << opt->name << "='" << opt->value << "'";
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index 194327c..79c7d0e 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -222,7 +222,7 @@ static void handleHtmlTag()
}
startName=i;
// search for end of name
- while (i<(int)yyleng && !isspace((uchar)c) && c!='=') { c=tagText.at(++i); }
+ while (i<(int)yyleng && !isspace((uchar)c) && c!='=' && c!= '>') { c=tagText.at(++i); }
endName=i;
HtmlAttrib opt;
opt.name = tagText.mid(startName,endName-startName).lower();
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp
index e1ff3e9..c7fcaf8 100644
--- a/src/htmldocvisitor.cpp
+++ b/src/htmldocvisitor.cpp
@@ -263,6 +263,12 @@ static QCString htmlAttribsToString(const HtmlAttribList &attribs, QCString *pAl
result+="=\""+convertToXML(att->value)+"\"";
}
}
+ else if (att->name=="nowrap") // In XHTML, attribute minimization is forbidden, and the nowrap attribute must be defined as <td nowrap="nowrap">.
+ {
+ result+=" ";
+ result+=att->name;
+ result+="=\"nowrap\"";
+ }
}
return result;
}