I am playing around with delivering a suite of macros to some of my customers and while I have external documentation on them, I would like to provide built in descriptions within EG. An example of this would be when you type the keyword "data" and mouse over it, you get the description tool tip that pops up. In the example of mousing over the "data" keyword text has bold formatting as well as carriage returns. When writing your own macro, you have the ability to customize and create this description by inserting a comment after a parameter. This can be done for multiple parameters. My question is how do I format this description? I've tried many common escape sequences trying to get this to happen to no avail. What I'd like to see is the ability to have the description have line breaks so I can provide something like Description: Syntax: Examples: 1) 2) Instead what I get it all of that run together: "Description: Syntax: Examples: 1) 2)" Code Example: %macro foo(bar /* Description:
Syntax:
Examples:
1)
2)
*/);
/* code to execute here */
%mend foo;
%foo(value); Tool tip built in stating can be customized. Tool tip with customization: Edit: added Screenshots
... View more