Re: [Doxygen-users] \warning - customize the "Warning" text ?
Brought to you by:
dimitri
|
From: Monique S. <mon...@ea...> - 2016-09-22 21:22:18
|
Thanks, Luke!
I found that I needed to escape the quote marks that surround the class info, so the following result does exactly what I wish:
ALIASES += memory{1}="<dl class=\"section memory\"><dt>Memory Usage</dt><dd>\1</dd></dl>"
And in my custom stylesheet (as assigned to the HTML_EXTRA_STYLESHEET config value in my Doxyfile), I simply added the dl.memory to the styling for dl.warning and dl.attention:
dl.warning, dl.attention, dl.memory
{
margin-left:-7px;
padding-left: 3px;
border-left:4px solid;
border-color: #FF0000;
}
Thanks for the help!
-Monique |