Improve Zeekygen output for long attribute expressions

Long inline-literals often don't wrap pleasantly in HTML renders and
we had a few &default or &deprecated attributes whose expressions
evaluate to a value long enough to warrant different formatting or
even truncation.
This commit is contained in:
Jon Siwek 2019-07-03 11:03:07 -07:00
parent c5c688054c
commit c03ef308c9
6 changed files with 43 additions and 15 deletions

View file

@ -412,7 +412,7 @@ void ID::DescribeReSTShort(ODesc* d) const
if ( attrs )
{
d->SP();
attrs->DescribeReST(d);
attrs->DescribeReST(d, true);
}
}