comparison doc/interpreter/macros.texi @ 15151:8bba043342ab

Move documentation for seealso macro outside of macro definition. Saves 15K in generated HTML. * macros.texi: Move documentation for seealso macro outside of macro definition.
author Rik <rik@octave.org>
date Fri, 10 Aug 2012 16:03:34 -0700
parents 88e67d58b06b
children bf1de4943a5d
comparison
equal deleted inserted replaced
15149:62a35ae7d6a2 15151:8bba043342ab
25 25
26 @c The following macro is used for the on-line help system, but we don't 26 @c The following macro is used for the on-line help system, but we don't
27 @c want lots of `See also: foo, bar, and baz' strings cluttering the 27 @c want lots of `See also: foo, bar, and baz' strings cluttering the
28 @c printed manual (that information should be in the supporting text for 28 @c printed manual (that information should be in the supporting text for
29 @c each group of functions and variables). 29 @c each group of functions and variables).
30 @c
31 @c Implementation Note:
32 @c For TeX, @vskip produces a nice separation.
33 @c For Texinfo '@sp 1' should work, but in practice produces ugly results
34 @c for HTML. We use a simple blank line to produce the correct behavior.
30 35
31 @macro seealso {args} 36 @macro seealso {args}
32 @iftex 37 @iftex
33 @vskip 2pt 38 @vskip 2pt
34 @end iftex 39 @end iftex
35 @ifnottex 40 @ifnottex
36 @c Texinfo @sp should work but in practice produces ugly results for HTML.
37 @c A simple blank line produces the correct behavior.
38 @c @sp 1
39 41
40 @end ifnottex 42 @end ifnottex
41 @noindent 43 @noindent
42 @strong{See also:} \args\. 44 @strong{See also:} \args\.
43 @end macro 45 @end macro