1\input texinfo
2@setfilename alias.info
3
4@top test alias
5
6@alias myalias = code
7
8@ignore
9@alias ignored = file
10@end ignore
11
12@macro mymacro{arg}
13before \arg\ after arg
14@end macro
15
16@mymacro{
17@alias inmymacro = verb
18
19@ignore
20@alias ignoredinmymacro = file
21@end ignore
22}
23
24Should be code: @myalias{code}
25
26Should be verb: @inmymacro{!verb!}
27
28Should not be defined: @ignored{ignored}
29
30Should not be defined: @ignoredinmymacro{ignoredinmymacro}
31
32@table @myalias
33@item table item (code)
34@end table
35
36@bye
37