blob: b60242322dc99531b04fe6fd018cf90930717e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
\input texinfo
@setfilename cond.info
@node Top
@html
This is html text.
@end html
@ifhtml
This is ifhtml text.
@end ifhtml
@ifnothtml
This is ifnothtml text.
@end ifnothtml
@ifinfo
This is ifinfo text.
@end ifinfo
@ifnotinfo
This is ifnotinfo text.
@end ifnotinfo
@tex
This is tex text.
@end tex
@iftex
This is iftex text.
@end iftex
@ifnottex
This is ifnottex text.
@end ifnottex
@bye
|