summaryrefslogtreecommitdiffstats
path: root/lynx_help/Lynx_users_guide.html
blob: 6815754eaab2d9eda47b9addbe880f383030b6e6 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
<!-- $LynxId: Lynx_users_guide.html,v 1.161 2024/01/15 01:49:05 tom Exp $ -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
  <meta name="generator" content=
  "HTML Tidy for HTML5 for Linux version 5.6.0">
  <title>Lynx Users Guide v2.9.0</title>
  <link rev="made" href="mailto:lynx-dev@nongnu.org">
  <meta http-equiv="Content-Type" content=
  "text/html; charset=us-ascii">
  <meta name="description" content=
  "This is the user's guide to Lynx, giving detailed information on how to use the program, and how to change its configuration using the options menu.">
</head>
<body>
  <h1>Lynx Users Guide v2.9.0</h1>

  <p>Lynx is a fully-featured <em>World Wide Web</em>
  (<em>WWW</em>) client for users running cursor-addressable,
  character-cell display devices (e.g., vt100 terminals, vt100
  emulators running on PCs or Macs, or any other character-cell
  display). It will display <em>Hypertext Markup Language</em>
  (<em>HTML</em>) documents containing links to files on the local
  system, as well as files on remote systems running <em>http</em>,
  <em>gopher</em>, <em>ftp</em>, <em>wais</em>, <em>nntp</em>,
  <em>finger</em>, or <em>cso</em>/<em>ph</em>/<em>qi</em> servers,
  and services accessible via logins to <em>telnet</em>,
  <em>tn3270</em> or <em>rlogin</em> accounts (see <a href=
  "lynx_url_support.html">URL Schemes Supported by Lynx</a>).
  <a href="#Hist">Current</a> versions of Lynx run on Unix, VMS,
  Windows3.x/9x/NT and later, 386DOS and OS/2 EMX.</p>

  <p>Lynx can be used to access information on the <em>WWW</em>, or
  to build information systems intended primarily for local access.
  For example, Lynx has been used to build several <em>Campus Wide
  Information Systems</em> (<em>CWIS</em>). In addition, Lynx can
  be used to build systems isolated within a single LAN.</p>

  <h2 id="TOC"><a name="Contents" id="Contents">Table of
  Contents</a></h2>

  <ul>
    <li><a href="#Help" name="ToC-Help" id="ToC-Help">Lynx online
    help</a></li>

    <li><a href="#Local" name="ToC-Local" id="ToC-Local">Viewing
    local files with Lynx</a></li>

    <li><a href="#Leaving" name="ToC-Leaving" id=
    "ToC-Leaving">Leaving Lynx</a></li>

    <li><a href="#Remote" name="ToC-Remote" id=
    "ToC-Remote">Starting Lynx with a Remote File</a></li>

    <li><a href="#EnVar" name="ToC-EnVar" id="ToC-EnVar">Starting
    Lynx with the WWW_HOME environment variable.</a></li>

    <li><a href="#IntraDocNav" name="ToC-IntraDocNav" id=
    "ToC-IntraDocNav">Navigating hypertext documents with Lynx</a></li>

    <li><a href="#Disposing" name="ToC-Disposing" id=
    "ToC-Disposing">Printing, Mailing, and Saving rendered files to
    disk.</a></li>

    <li><a href="#LocalSource" name="ToC-LocalSource" id=
    "ToC-LocalSource">Viewing the HTML document source and editing
    documents</a></li>

    <li><a href="#RemoteSource" name="ToC-RemoteSource" id=
    "ToC-RemoteSource">Downloading and Saving source files.</a></li>

    <li><a href="#ReDo" name="ToC-ReDo" id="ToC-ReDo">Reloading
    files and refreshing the display</a></li>

    <li><a href="#Search" name="ToC-Search" id="ToC-Search">Lynx
    searching commands</a></li>

    <li><a href="#InteractiveOptions" name="ToC-InteractiveOptions"
    id="ToC-InteractiveOptions">Lynx Options Menu</a></li>

    <li><a href="#Mail" name="ToC-Mail" id="ToC-Mail">Comments and
    mailto: links</a></li>

    <li><a href="#News" name="ToC-News" id="ToC-News">USENET News
    posting</a></li>

    <li><a href="#Bookmarks" name="ToC-Bookmarks" id=
    "ToC-Bookmarks">Lynx bookmarks</a></li>

    <li><a href="#Jumps" name="ToC-Jumps" id="ToC-Jumps">Jump
    command</a></li>

    <li><a href="#DirEd" name="ToC-DirEd" id="ToC-DirEd">Directory
    Editing</a></li>

    <li><a href="#ColorMouse" name="ToC-ColorMouse" id=
    "ToC-ColorMouse">Using Color &amp; the Mouse</a></li>

    <li><a href="#MiscKeys" name="ToC-MiscKeys" id=
    "ToC-MiscKeys">Scrolling and Other useful commands</a></li>

    <li><a href="#Forms" name="ToC-Forms" id="ToC-Forms">Lynx and
    HTML Forms</a> | <a href="#Images" name="ToC-Images" id=
    "ToC-Images">Lynx and HTML Images</a></li>

    <li><a href="#Tables" name="ToC-Tables" id="ToC-Tables">Lynx
    and HTML Tables</a> | <a href="#Tabs" name="ToC-Tabs" id=
    "ToC-Tabs">Lynx and HTML Tabs</a></li>

    <li><a href="#Frames" name="ToC-Frames" id="ToC-Frames">Lynx
    and HTML Frames</a> | <a href="#Banners" name="ToC-Banners" id=
    "ToC-Banners">Lynx and HTML Banners</a></li>

    <li><a href="#Footnotes" name="ToC-Footnotes" id=
    "ToC-Footnotes">Lynx and HTML Footnotes</a> | <a href="#Notes"
    name="ToC-Notes" id="ToC-Notes">Lynx and HTML Notes</a></li>

    <li><a href="#Lists" name="ToC-Lists" id="ToC-Lists">Lynx and
    HTML Lists</a></li>

    <li><a href="#Quotes" name="ToC-Quotes" id="ToC-Quotes">Lynx
    and HTML Quotes</a></li>

    <li><a href="#Eightbit" name="ToC-Eightbit" id=
    "ToC-Eightbit">Lynx and HTML Internationalization: 8bit,
    UNICODE, etc.</a></li>

    <li><a href="#USEMAP" name="ToC-USEMAP" id="ToC-USEMAP">Lynx
    and Client-Side-Image-Maps</a></li>

    <li><a href="#Refresh" name="ToC-Refresh" id="ToC-Refresh">Lynx
    and Client-Side-Pull</a></li>

    <li><a href="#Cookies" name="ToC-Cookies" id="ToC-Cookies">Lynx
    and State Management</a> (Me want <em>cookie</em>!)</li>

    <li><a href="#Cache" name="ToC-Cache" id="ToC-Cache">Lynx and
    Cached Documents</a></li>

    <li><a href="#Sessions" name="ToC-Sessions" id=
    "ToC-Sessions">Lynx and Sessions</a></li>

    <li><a href="#Invoking" name="ToC-Invoking" id=
    "ToC-Invoking">The Lynx command line</a></li>

    <li><a href="#Environment" name="ToC-Environment" id=
    "ToC-Environment">Environment variables used by Lynx</a></li>

    <li><a href="#lynx.cfg" name="ToC-lynx.cfg" id=
    "ToC-lynx.cfg">Main configuration file lynx.cfg</a></li>

    <li><a href="#Hist" name="ToC-Hist" id="ToC-Hist">Lynx
    development history</a></li>
  </ul>

  <h2 id="id-Help"><a name="Help" id="Help">Lynx online help</a></h2>

  <p>Online help is available while viewing any document. Press the
  &ldquo;<samp>?</samp>&rdquo; or &ldquo;<samp>H</samp>&rdquo; key
  (or the &ldquo;<samp>h</samp>&rdquo; key if vi-like key movement
  is not on) to see a list of help topics. See the section titled
  <a href="#IntraDocNav">Navigating hypertext documents with
  Lynx</a> for information on navigating through the help
  files.</p>

  <p>In addition, a summary description of all the Lynx keystroke
  commands and their key bindings is available by pressing the
  &ldquo;<samp>K</samp>&rdquo; key (or the
  &ldquo;<samp>k</samp>&rdquo; key if vi-like key movement is not
  on).</p>

  <p>If you want to recall recent status-line messages, you can do
  so by entering the &ldquo;g&rdquo; command, followed by
  &ldquo;LYNXMESSAGES:&rdquo;.</p>

  <p>[<a href="#ToC-Help">ToC</a>]</p>

  <h2 id="id-Local"><a name="Local" id="Local">Viewing local files
  with Lynx</a></h2>

  <p>Lynx can be started by entering the Lynx command along with
  the name of a file to display. For example these commands could
  all be used to display an arbitrary ASCII text or HTML file:</p>

  <dl>
    <dt>UNIX</dt>

    <dd><code>lynx filename</code>
    </dd>

    <dd><code>lynx /home/my-dir/filename</code>
    </dd>

    <dd><code>lynx ~/filename</code>
    </dd>

    <dt>VMS</dt>

    <dd><code>lynx filename</code>
    </dd>

    <dd><code>lynx dua5:[my-directory]filename</code>
    </dd>

    <dd><code>lynx /dua5/my-directory/filename</code>
    </dd>

    <dd><code>lynx ~/filename</code>
    </dd>

    <dd><code>lynx sys$login:filename</code>
    </dd>

    <dd><code>lynx /sys$login/filename</code>
    </dd>

    <dt>Win32/DOS</dt>

    <dd><code>lynx file:///filename</code>
    </dd>

    <dd><code>lynx filename</code>
    </dd>

    <dd><code>lynx c:/dir/filename</code>
    </dd>

    <dd><code>lynx //n/dir/filename</code>
    </dd>
  </dl>

  <p>When executed, Lynx will clear the screen and display as much
  of the specified file as will fit on the screen. Pressing a
  <em>down-arrow</em> will bring up the next screen, and pressing
  an <em>up-arrow</em> will bring up the previous screen. If no
  file is specified at startup, a default file will be displayed,
  depending on settings e.g., in <em>lynx.cfg</em>.</p>

  <p>Lynx will display local files written in the <em>HyperText
  Markup Language</em> (<em>HTML</em>), if the file's name ends
  with the characters <em>.html</em>, <em>.htm</em>,
  <em>.shtml</em>, <em>.htmlx</em>, <em>.html3</em>, or
  <em>.ht3</em>. HTML is a file format that allows users to create
  a file that contains (among other things) hypertext links to
  other files. Several files linked together may be described as a
  <em>hypertext document</em>. If the filename does not have one of
  the suffixes mapped by Lynx to HTML, the <em>-force_html</em>
  command line option can be included to force treatment of the
  file as hypertext.</p>

  <p>When Lynx displays an HTML file, it shows links as "bold face"
  text, except for one link, which is shown as "highlighted" text.
  Whether "boldface" or "highlighted" text shows up as reverse
  video, boldface type, or a color change, etc. depends on the
  display device being used (and the way in which that device has
  been configured). Lynx has no control over the exact presentation
  of links.</p>

  <p>The one link displayed as "highlighted" text is the currently
  "selected" link. Lynx will display the file associated with the
  selected link when a <em>right-arrow</em> or a <em>Return</em>
  key is pressed. To select a particular link, press the
  <em>up-arrow</em> or <em>down-arrow</em> keys until the desired
  link becomes "highlighted," and then press the
  <em>right-arrow</em> or <em>Return</em> key to view the linked
  information. Information included in the HTML file tells Lynx
  where to find the linked file and what kind of server will
  provide it (i.e., HTTP, Gopher, etc.).</p>

  <p>Lynx renders HTML files and saves the rendition (and the
  source, if so configured in the <a href="#lynx.cfg">lynx.cfg</a>
  file) for initial display and should you select the link again.
  If you do select a link again and have reason to desire a new
  fetch and rendering of the file, use the NOCACHE command,
  normally mapped to &ldquo;<samp>x</samp>&rdquo; and
  &ldquo;<samp>X</samp>&rdquo;, instead of the <em>right-arrow</em>
  or <em>Return</em> key when positioned on the link. You also can
  force a new fetch and rendering of the currently displayed
  document via the RELOAD command, normally mapped to
  <em>Control-R</em>.</p>

  <p>When a binary file is encountered Lynx will ask the user if
  he/she wishes to download the file or cancel. If the user selects
  &ldquo;<samp>D</samp>&rdquo; for download, Lynx will transfer the
  file into a temporary location and present the user with a list
  of options. The only default option is <em>Save to disk</em>,
  which is disabled if Lynx is running in anonymous mode.
  Additional download methods may be defined in the <a href=
  "#lynx.cfg">lynx.cfg</a> file. Programs like kermit, zmodem and
  FTP are some possible options.</p>

  <p>[<a href="#ToC-Local">ToC</a>]</p>

  <h2 id="id-Leaving"><a name="Leaving" id="Leaving">Leaving
  Lynx</a></h2>

  <p>To exit Lynx use the &ldquo;<samp>q</samp>&rdquo; command. You
  will be asked whether you really want to quit. Answering
  &ldquo;<samp>y</samp>&rdquo; will exit and
  &ldquo;<samp>n</samp>&rdquo; will return you to the current
  document. Use &ldquo;<samp>Q</samp>&rdquo; or <em>Control-D</em>
  to quit without verification.</p>

  <p>[<a href="#ToC-Leaving">ToC</a>]</p>

  <h2 id="id-Remote"><a name="Remote" id="Remote">Starting Lynx
  with a Remote File</a></h2>

  <p>If you wish to view a remote file (that is, a file residing on
  some computer system other than the one upon which you are
  running Lynx) without first viewing a local file, you must
  identify that file by using a Uniform Resource Locator (URL).
  URLs take the general form:</p>

  <blockquote>
    <p><code>PROTOCOL :// HOST / PATH</code>
    </p>
  </blockquote>

  <p>where</p>

  <dl>
    <dt><code>PROTOCOL</code>
    </dt>

    <dd>
      <p>identifies the communications protocol (<em>scheme</em>)
      used by the server that will provide the file. As mentioned
      earlier, Lynx (and any WWW client) can interact with a
      variety of servers, each with its own protocol.</p>
    </dd>

    <dt><code>HOST</code>
    </dt>

    <dd>
      <p>is the Internet address of the computer system on which
      the server is running, and</p>
    </dd>

    <dt><code>PATH</code>
    </dt>

    <dd>
      <p>is a scheme-specific field which for some schemes may
      correspond to a directory path and/or filename.</p>
    </dd>
  </dl>

  <p>Here are some sample URLs.</p>

  <dl>
    <dt>HTTP (HyperText Transfer Protocol)</dt>

    <dd><code>https://invisible-island.net/lynx/</code>
    </dd>

    <dt>Gopher</dt>

    <dd><code>gopher://gopher.micro.umn.edu/11/</code>
    </dd>

    <dt>FTP (File Transfer Protocol)</dt>

    <dd><code>ftp://ftp2.cc.ukans.edu/pub/lynx/README</code>
    </dd>

    <dt>WAIS (Wide Area Information Service protocol)</dt>

    <dd><code>wais://cnidr.org/directory-of-servers</code>
    </dd>

    <dt>A URL may be specified to Lynx on the command line, as
    in:</dt>

    <dd><code>lynx
    http://kufacts.cc.ukans.edu/cwis/kufacts_start.html</code>
    </dd>
  </dl>

  <p>Lynx also will attempt to create a complete URL if you include
  adequate portions of it in the startfile argument. For
  example:</p>

  <pre>
                 <em>wfbr</em>          will be expanded to:
      <em>http://www.wfbr.edu/</em>     and:
             <em>ftp.more.net/pub</em>  will be expanded to:
       <em>ftp://ftp.more.net/pub</em>
</pre>
  <p>See <a href="lynx_url_support.html">URL Schemes Supported by
  Lynx</a> for more detailed information.</p>

  <p>[<a href="#ToC-Remote">ToC</a>]</p>

  <h2 id="id-EnVar"><a name="EnVar" id="EnVar">Starting Lynx with
  the WWW_HOME environment variable.</a></h2>

  <p>You may also specify a starting file for Lynx using the
  WWW_HOME environment variable,</p>

  <dl>
    <dt>UNIX</dt>

    <dd>
      <dl>
        <dt>ksh</dt>

        <dd><code>export WWW_HOME=http://www.w3.org/</code>
        </dd>

        <dt>csh</dt>

        <dd><code>setenv WWW_HOME http://www.w3.org/</code>
        </dd>
      </dl>
    </dd>

    <dt>VMS</dt>

    <dd><code>define "WWW_HOME" "http://www.w3.org/"</code>
    </dd>

    <dt>win32</dt>

    <dd><code>WWW_HOME=http://www.w3.org/ [or in registry]</code>
    </dd>
  </dl>

  <p>Note that on VMS the double-quoting <em>must</em> be included
  to preserve casing.</p>

  <p>[<a href="#ToC-EnVar">ToC</a>]</p>

  <h2 id="id-IntraDocNav"><a name="IntraDocNav" id=
  "IntraDocNav">Navigating hypertext documents with Lynx</a></h2>

  <p>The process of moving within a hypertext web, selecting and
  displaying links is known as "navigation." With Lynx almost all
  navigation can be accomplished with the arrow keys and the
  numeric keypad.</p>

  <pre>
                                       +-------+-------+-------+
                                       | TOP   |  /|\  | Page  |
              arrow keys               | of    |   |   | UP    |
                                       | text 7|   |  8|      9|
              +---------+              +-------+-------+-------+
              | SELECT  |              |       |       |       |
              | prev /|\|              | &lt;---  |       |  ---&gt; |
              | link  | |              |      4|      5|      6|
    +---------+---------+---------+    +-------+-------+-------+
    |    BACK | SELECT  | DISPLAY |    | END   |   |   | Page  |
    |&lt;-- prev | next  | | sel. --&gt;|    | of    |   |   | DOWN  |
    |    doc. | link \|/| link    |    | text 1|  \|/ 2|      3|
    +---------+---------+---------+    +-------+-------+-------+
</pre>
  <p>There are also a few other keyboard commands to aid in
  navigation. The Control and Function keys used for navigation
  within the current document are described in <a href=
  "#MiscKeys"><em>Scrolling and Other useful commands</em></a>.</p>

  <p>Some additional commands depend on the fact that Lynx keeps a
  list of each link you visited to reach the current document,
  called the <a href="keystrokes/history_help.html">History
  Page</a>, and a list of all links visited during the current Lynx
  session, called the <a href=
  "keystrokes/visited_help.html">Visited Links Page</a>.</p>

  <ul>
    <li>
      <p>The HISTORY keystroke command, normally mapped to
      <em>Backspace</em> or <em>Delete</em>, will show you the
      <em>History Page</em> of links leading to your access of the
      current document. Any of the previous documents shown in the
      list may be revisited by selecting them from the history
      screen.</p>
    </li>

    <li>
      <p>The VLINKS keystroke command, normally mapped to uppercase
      &ldquo;<samp>V</samp>&rdquo;, will show the <em>Visited Links
      Page</em>, and you similarly can select links in that
      list.</p>
    </li>

    <li>
      <p>The MAIN_MENU keystroke command, normally mapped to
      &ldquo;<samp>m</samp>&rdquo; and
      &ldquo;<samp>M</samp>&rdquo;, will take you back to the
      starting document unless you specified the
      <em>-homepage=URL</em> option at the command line.</p>
    </li>

    <li>
      <p>Also, the LIST and ADDRLIST keystroke commands, normally
      mapped to &ldquo;<samp>l</samp>&rdquo; and
      &ldquo;<samp>A</samp>&rdquo; respectively, will create a
      compact lists of all the links in the current document, and
      they can be selected via those lists.</p>
    </li>
  </ul>

  <p>The &ldquo;<samp>i</samp>&rdquo; key presents an index of
  documents. The default index offered contains many useful links,
  but can be changed in <em>lynx.cfg</em> or on the command line
  using the <em>-index=URL</em> switch.</p>

  <p>If you choose a link to a server with active access
  authorization, Lynx will automatically prompt for a username and
  a password. If you give the correct information, you will then be
  served the requested information. Lynx will automatically send
  your username and password to the same server if it is needed
  again.</p>

  <p>[<a href="#ToC-IntraDocNav">ToC</a>]</p>

  <h2 id="id-Disposing"><a name="Disposing" id=
  "Disposing">Printing, Mailing, and Saving rendered files to
  disk.</a></h2>

  <p>Rendered HTML documents, and plain text files, may be printed
  using the &ldquo;<samp>p</samp>&rdquo; command while viewing the
  document. After pressing the &ldquo;<samp>p</samp>&rdquo; key a
  menu of <em>Print Options</em> will be displayed. The menu will
  vary according to several factors. First, some sites set up
  special accounts to let users run Lynx to access local
  information systems. Typically these accounts require no
  passwords and do not require users to identify themselves. As a
  result such accounts are called "anonymous" accounts, and their
  users are considered "anonymous" users. In most configurations,
  all Lynx users (including anonymous users) are able to mail files
  to themselves and print the entire file to the screen.</p>

  <p>Additional print options are available for users who are using
  Lynx from their own accounts (that is, so-called "non-anonymous
  users"). In particular, the <em>Save to a local file</em> option
  allows you to save the document into a file on your disk space.
  Additional print options may also be available as configured in
  the <a href="#lynx.cfg">lynx.cfg</a> file.</p>

  <p>Some options, such as <em>Save to a local file</em>, involve
  prompting for an output filename. All output filename entries are
  saved in a circular buffer, and any previous entries can be
  retrieved for re-use by pressing the <em>up-arrow</em> or
  <em>down-arrow</em> keys at the prompt.</p>

  <p>Note that if you want exact copies of text files without any
  expansions of TAB characters to spaces you should use the
  <a href="#RemoteSource">Download</a> options.</p>

  <p>[<a href="#ToC-Disposing">ToC</a>]</p>

  <h2 id="id-LocalSource"><a name="LocalSource" id=
  "LocalSource">Viewing the HTML document source and editing
  documents</a></h2>

  <p>When viewing HTML documents it is possible to retrieve and
  display the unrendered (i.e., the original HTML) source of the
  document by pressing the &ldquo;<samp>\</samp>&rdquo; (backslash)
  key. Lynx usually caches only the rendering of the document and
  does not keep the source (unless it is configured to do so in the
  <a href="#lynx.cfg">lynx.cfg</a> file), so to display the source
  unrendered, Lynx must reload it from the server or disk. When
  viewing unrendered documents you may print them as any normal
  document.</p>

  <p>Selecting the <em>Print to a local file</em> option from the
  Print Menu, makes it possible to save the source of the document
  to disk so that you may have a local copy of the document source,
  but it is better to <a href="#RemoteSource">Download</a> the
  source.</p>

  <p>NOTE: When saving an HTML document it is important to name the
  document with a <em>.html</em> or <em>.htm</em> extension, if you
  want to read it with Lynx again later.</p>

  <p id="FileEdit">Lynx can allow users to edit documents that
  reside on the local system. To enable editing, documents must be
  referenced using a "file:" URL or by specifying a plain filename
  on the command line as in the following two examples:</p>

  <dl>
    <dt>Command</dt>

    <dd><code>lynx file://localhost/FULL/PATH/FILENAME</code>
    </dd>

    <dd><code>lynx path/filename.html</code>
    </dd>
  </dl>

  <p>In addition, the user must also specify an editor in the
  <em>Options Menu</em> so that Lynx knows which editor to use. If
  the file is specified correctly and an editor is defined, then
  you may edit documents by using the &ldquo;<samp>e</samp>&rdquo;
  command. When the &ldquo;<samp>e</samp>&rdquo; command is entered
  your specified editor is spawned to edit the file. After changes
  are completed, exit your editor and you will return to Lynx. Lynx
  will reload and render the file so that changes can be
  immediately examined.</p>

  <p>[<a href="#ToC-LocalSource">ToC</a>]</p>

  <h2 id="id-RemoteSource"><a name="RemoteSource" id=
  "RemoteSource">Downloading and Saving source files.</a></h2>

  <p>If the DOWNLOAD keystroke command
  (&ldquo;<samp>d</samp>&rdquo; or &ldquo;<samp>D</samp>&rdquo;) is
  used when positioned on a link for an HTML, plain text, or binary
  file, Lynx will transfer the file, without rendering, into a
  temporary location and present the user with a list of options,
  just as it does when a link for a binary file of a type for which
  no viewer has been mapped is activated.</p>

  <p>There is a default <em>Download option</em> of <em>Save to
  disk</em>. This is disabled if Lynx is running in anonymous mode.
  Any number of download methods such as kermit and zmodem may be
  defined in addition to this default in the <em>lynx.cfg</em>
  file. Using the <em>Save to disk</em> option under the PRINT
  command after viewing the source of an HTML with the VIEW SOURCE
  (<samp>\</samp>) command will result in a file which differs from
  the original source in various ways such as tab characters
  expanded to spaces. Lynx formats the source presentation in this
  mode. On the other hand, if the DOWNLOAD command is used, the
  only change will be that Lynx optionally puts</p>

  <blockquote>
    <p>&lt;!--X-URL: http://www.site.foo/path/to/file.html
    --&gt;<br>
    &lt;BASE href="http://www.site.foo/path/to/file.html"&gt;</p>
  </blockquote>

  <p>at the start of the file so that relative URLs in the document
  will still work. Even this modification can be prevented by
  setting PREPEND_BASE_TO_SOURCE:FALSE in lynx.cfg.</p>

  <p>Some options, such as <em>Save to disk</em>, involve prompting
  for an output filename. All output filename entries are saved in
  a circular buffer, and any previous entries can be retrieved for
  re-use by pressing the <em>up-arrow</em> or <em>down-arrow</em>
  keys at the prompt.</p>

  <p>[<a href="#ToC-RemoteSource">ToC</a>]</p>

  <h2 id="id-ReDo"><a name="ReDo" id="ReDo">Reloading files and
  refreshing the display</a></h2>

  <p>The RELOAD (<em>Control-R</em>) command will reload and
  re-render the file that you are currently viewing. The REFRESH
  (<em>Control-L</em> or <em>Control-W</em>) command will refresh
  or wipe the screen to remove or correct any errors that may be
  caused by operating system or other messages.</p>

  <p>The NOCACHE (&ldquo;<samp>x</samp>&rdquo; or
  &ldquo;<samp>X</samp>&rdquo;) command can be used in lieu of
  ACTIVATE (<em>Return</em> or <em>right-arrow</em>) to request an
  uncached copy and new rendition for the current link, or
  resubmission of a FORM, if a cache from a previous request or
  submission exits. The request or submission will include
  <em>Pragma: no-cache</em> and <em>Cache-Control: no-cache</em> in
  its headers. Note that FORMs with POST content will be
  resubmitted regardless of whether the NOCACHE or ACTIVATE command
  is used (see <a href="#Forms"><em>Lynx and HTML
  Forms</em></a>).</p>

  <p>[<a href="#ToC-ReDo">ToC</a>]</p>

  <h2 id="id-Search"><a name="Search" id="Search">Lynx searching
  commands</a></h2>

  <p>Two commands activate searching in Lynx:
  &ldquo;<samp>/</samp>&rdquo; and
  &ldquo;<samp>s</samp>&rdquo;.</p>

  <p>While viewing a normal document use the
  &ldquo;<samp>/</samp>&rdquo; command to find a word or phrase
  within the current document. The search type will depend on the
  search option setting in the <a href=
  "#InteractiveOptions">Options Menu</a>. The search options are
  case sensitive and case insensitive. These searches are entirely
  local to Lynx.</p>

  <p>Some documents are designated <em>index documents</em> by
  virtue of an ISINDEX element in their HEAD section. These
  documents can be used to retrieve additional information based on
  searches using words or phrases submitted to an index server. The
  Lynx statusline will indicate that you are viewing such a
  document, and if so, the &ldquo;<samp>s</samp>&rdquo; key will
  invoke a statusline prompt to enter a query string. The prompt
  can be specified via a PROMPT attribute in the ISINDEX element.
  Otherwise, Lynx will use an internally configured prompt. The
  address for submitting the search can be specified via an HREF or
  ACTION attribute. Otherwise, Lynx will use the current document's
  URL and append your query string as a <em>?searchpart</em> (see
  <a href="lynx_url_support.html">Supported URLs</a>).</p>

  <p>All search words or strings which you have entered during a
  Lynx session are saved in a circular buffer, and can be retrieved
  for re-use by pressing the <em>up-arrow</em> or
  <em>down-arrow</em> keys at the prompt for a search word or
  string. Also, you can use the &ldquo;<samp>n</samp>&rdquo;ext
  command to repeat a search with the last-entered search word or
  phrase, starting from the current position in the document. The
  word or phrase matches will be highlighted throughout the
  document, but such highlighting will not persist for new
  documents, or if the current document is reloaded. The search
  cycles to the top of the document if the word or phrase is not
  located below your current position.</p>

  <p>Although <a href="#Forms">HTML Forms</a> have largely replaced
  index documents for searches via http servers, they are still
  useful for performing searches directly via WAIS or Gopher
  servers in conjunction with the internal gateways for such
  servers. For example, an HTML index document can act as a
  <em>cover page</em> describing a WAIS database and how to
  formulate query strings for searching it, and include an element
  such as:</p>

  <pre>
      <em>&lt;ISINDEX PROMPT="Enter WAIS query:"
               HREF="wais://net.bio.net/biologists-addresses"&gt;</em>
</pre>
  <p>for submitting a search of the Biologist's Addresses database
  directly to the net.bio.net WAIS server.</p>

  <p>[<a href="#ToC-Search">ToC</a>]</p>

  <h2 id="id-InteractiveOptions"><a name="InteractiveOptions" id=
  "InteractiveOptions">Lynx Options Menu</a></h2>

  <p>The Lynx <em>Options Menu</em> may be accessed by pressing the
  &ldquo;<samp>o</samp>&rdquo; key. It allows you to change options
  at runtime, if you need to. Most changes are read from &amp;
  saved to your .lynxrc file; those which are not are marked (!) in
  the form-based menu (as below). Many other options are stored in
  the <a href="#lynx.cfg">lynx.cfg</a> file.</p>

  <p>Lynx supports two styles of Options Menu:</p>

  <ul>
    <li><a name="item-form_based_options" href=
    "#explain-form_based_options" id=
    "item-form_based_options">form-based</a></li>

    <li><a name="item-key_based_options" href=
    "#explain-key_based_options" id=
    "item-key_based_options">key-based</a></li>
  </ul>

  <p id="explain-form_based_options">The form-based menu shown
  below is an HTML file generated at runtime, in which the user
  fills in choices as in any ordinary HTML form.</p>

  <pre>

                    <a href="#item-form_based_options" name=
"example-form_based_options" id=
"example-form_based_options">Options Menu (Lynx Version 2.9.0)</a>

    Accept Changes - Reset Changes - Left Arrow cancels changes - HELP!

                         Save options to disk: [ ]
                (options marked with (!) will not be saved)

  General Preferences
  User mode                        : <a href=
"#optinfo-user_mode">[Advanced____]</a>
  Editor                           : <a href=
"#optinfo-editor">vile______________________________________</a>
  Type of Search                   : <a href=
"#optinfo-type_of_search">[Case insensitive]</a>

  Security and Privacy
  Cookies                          : <a href=
"#optinfo-cookies">[ask user__]</a>
  Invalid-Cookie Prompting (!)     : <a href=
"#optinfo-invalid_cookie_prompting">[prompt normally___]</a>
  SSL Prompting (!)                : <a href=
"#optinfo-ssl_prompting">[prompt normally___]</a>

  Keyboard Input
  Keypad mode                      : <a href=
"#optinfo-keypad_mode">[Numbers act as arrows_____________]</a>
  Emacs keys                       : <a href=
"#optinfo-emacs_keys">[OFF]</a>
  VI keys                          : <a href=
"#optinfo-vi_keys">[OFF]</a>
  Line edit style                  : <a href=
"#optinfo-line_edit_style">[Bash-like Bindings]</a>

  Display and Character Set
  Use locale-based character set   : <a href=
"#optinfo-locale_based_charset">[ON_]</a>
  Use HTML5 charset replacements(!): <a href=
"#optinfo-use_html5_charset">[OFF]</a>
  Display character set            : <a href=
"#optinfo-display_charset">[UNICODE (UTF-8)________________]</a>
  Assumed document character set(!): <a href=
"#optinfo-assumed_document_charset">[iso-8859-1______]</a>
  Internationalized domain names(!): <a href=
"#optinfo-idna_mode">[IDNA TR46______]</a>
  Raw 8-bit                        : <a href=
"#optinfo-raw_8_bit">[OFF]</a>
  X Display                        : <a href=
"#optinfo-x_display">localhost:0.0_____________________________</a>

  Document Appearance
  Show color                       : <a href=
"#optinfo-show_color">[ON____]</a>
  Color style (!)                  : [lynx.lss___________]
  Default colors (!)               : [ON_]
  Show cursor                      : <a href=
"#optinfo-show_cursor">[OFF]</a>
  Underline links (!)              : <a href=
"#optinfo-underline_links">[OFF]</a>
  Show scrollbar                   : <a href=
"#optinfo-show_scrollbar">[ON_]</a>
  Popups for select fields         : <a href=
"#optinfo-popups_for_select">[ON_]</a>
  HTML error recovery              : <a href=
"#optinfo-html_error_recovery">[strict (SortaSGML mode)]</a>
  Bad HTML messages (!)            : <a href=
"#optinfo-bad_html_messages">[Warn, point to trace-file]</a>
  Show images                      : <a href=
"#optinfo-show_images">[ignore___]</a>
  Verbose images                   : <a href=
"#optinfo-verbose_images">[OFF__________]</a>
  Collapse BR tags (!)             : <a href=
"#optinfo-collapse_br_tags">[OFF_____]</a>
  Trim blank lines (!)             : <a href=
"#optinfo-trim_blank_lines">[trim-lines]</a>

  Headers Transferred to Remote Servers
  Personal mail address            : <a href=
"#optinfo-personal_mail_address">__________________________________________</a>
  Personal name for mail           : <a href=
"#optinfo-personal_name_for_mail">__________________________________________</a>
  Password for anonymous ftp       : <a href=
"#optinfo-password_for_anon_ftp">__________________________________________</a>
  Preferred media type (!)         : <a href=
"#optinfo-preferred_media_type">[Accept lynx's internal types]</a>
  Preferred encoding (!)           : <a href=
"#optinfo-preferred_encoding">[All_____]</a>
  Preferred document character set : <a href=
"#optinfo-preferred_doc_charset">_________________________________</a>
  Preferred document language      : <a href=
"#optinfo-preferred_doc_language">en_______________________________</a>
  HTTP protocol (!)                : <a href=
"#optinfo-http_protocol">[HTTP 1.0]</a>
  Send User-Agent header (!)       : <a href=
"#optinfo-send_user_agent">[X]</a>
  User-Agent header (!)            : <a href=
"#optinfo-user_agent">Lynx/2.9.0 libwww-FM/2.14 SSL-MM/1.4.</a>

  Listing and Accessing Files
  Use Passive FTP (!)              : <a href=
"#optinfo-use_passive_ftp">[ON_]</a>
  FTP sort criteria                : <a href=
"#optinfo-ftp_sort_criteria">[By Date]</a>
  Local directory sort criteria    : <a href=
"#optinfo-local_directory_sort_criteria">[Directories first]</a>
  Local directory sort order       : <a href=
"#optinfo-local_directory_sort_order">[By Date_]</a>
  Show dot files                   : <a href=
"#optinfo-show_dot_files">[OFF]</a>
  Pause when showing message (!)   : <a href=
"#optinfo-pause_when_showing_message">[ON_]</a>
  Show transfer rate               : <a href=
"#optinfo-show_transfer_rate">[Show KiB/sec (2-digits), ETA__]</a>

  Special Files and Screens
  Multi-bookmarks                  : <a href=
"#optinfo-multi_bookmarks">[ADVANCED]</a>
  Review/edit Bookmarks files      : Goto multi-bookmark menu
  Auto Session (!)                 : <a href=
"#optinfo-auto_session">[OFF]</a>
  Session file (!)                 : <a href=
"#optinfo-session_file">__________________________________________</a>
  Visited Pages                    : <a href=
"#optinfo-visited_pages">[By Last Visit Reversed_]</a>

  View the file lynx.cfg.

        Accept Changes - Reset Changes - Left Arrow cancels changes
</pre>
  <p id="explain-key_based_options">The key-based menu depends on
  key-strokes to identify options which the user wants to change.
  It is compiled into Lynx and is accessed by setting FORMS_OPTIONS
  to TRUE in <code>lynx.cfg</code>.</p>

  <pre>

             <a href="#item-key_based_options" name=
"example-key_based_options" id=
"example-key_based_options">Options Menu (Lynx Version 2.9.0)</a>

     <a href=
"#optinfo-editor">(E)</a>ditor                     : emacs
     <a href=
"#optinfo-x_display">(D)</a>ISPLAY variable           : aixtest.cc.ukans.edu:0.0
     mu<a href=
"#optinfo-multi_bookmarks">(L)</a>ti-bookmarks: OFF       <a href=
"#optinfo-bookmark_file">B)</a>ookmark file: lynx_bookmarks.html
     <a href=
"#optinfo-ftp_sort_criteria">(F)</a>TP sort criteria          : By Filename
     <a href=
"#optinfo-personal_mail_address">(P)</a>ersonal mail address      : montulli@netscape.com
     <a href=
"#optinfo-type_of_search">(S)</a>earching type             : CASE INSENSITIVE
     preferred document lan<a href=
"#optinfo-preferred_doc_language">(G)</a>uage: en
     preferred document c<a href=
"#optinfo-preferred_doc_charset">(H)</a>arset : NONE
     display <a href=
"#optinfo-display_charset">(C)</a>haracter set      : Western (ISO-8859-1)
     raw 8-bit or CJK m<a href=
"#optinfo-raw_8_bit">(O)</a>de      : ON      show color <a href=
"#optinfo-show_color">(&amp;)</a>  : OFF
     <a href="#optinfo-vi_keys">(V)</a>I keys: OFF   e<a href=
"#optinfo-emacs_keys">(M)</a>acs keys: OFF     sho<a href=
"#optinfo-show_dot_files">(W)</a> dot files: OFF
     popups for selec<a href=
"#optinfo-popups_for_select">(T)</a> fields   : ON      show cursor <a href="#optinfo-show_cursor">(@)</a> : OFF
     <a href=
"#optinfo-keypad_mode">(K)</a>eypad mode                : Numbers act as arrows
     li<a href=
"#optinfo-line_edit_style">(N)</a>e edit style            : Default Binding
     l<a href=
"#optinfo-local_directory_sort_criteria">(I)</a>st directory style       : Mixed style
     <a href=
"#optinfo-user_mode">(U)</a>ser mode                  : Advanced      verbose images <a href="#optinfo-verbose_images">(!)</a> : ON
     user <a href=
"#optinfo-user_agent">(A)</a>gent                 : [User-Agent header]
     local e<a href=
"#optinfo-execution_links">(X)</a>ecution links      : FOR LOCAL FILES ONLY
</pre>
  <p>An option can be changed by entering the capital letter or
  character in parentheses for the option you wish to change (e.g.,
  &ldquo;<samp>E</samp>&rdquo; for Editor or
  &ldquo;<samp>@</samp>&rdquo; for show cursor). For fields where
  text must be entered, simply enter the text by typing on the
  keyboard. The <a href="keystrokes/edit_help.html">Line Editor</a>
  can be used to correct mistakes, and <em>Control-U</em> can be
  used to erase the line. When you are done entering a change press
  the <em>Return</em> key to get back to the <em>Command?</em>
  prompt.</p>

  <p>For fields where you must choose one of two choices, press any
  key to toggle the choices and press the <em>Return</em> key to
  finish the change.</p>

  <p>For fields where you potentially have more than two choices,
  popup windows may be evoked which function homologously to those
  for select fields in <a href="#Forms">HTML Forms</a>. The popup
  windows will be invoked only if you have popups for select fields
  set to ON (see below). Otherwise, your cursor will be positioned
  at the current choice, and you can press any key to cycle through
  the choices, then press the <em>Return</em> key to finish the
  change.</p>

  <p>When you are done changing options use the
  &ldquo;<samp>r</samp>&rdquo; command to return to Lynx or the
  &ldquo;<samp>&gt;</samp>&rdquo; command to save the options to a
  <em>.lynxrc</em> file and return to Lynx.</p>

  <p>The following table describes the options available on the
  <em>Options Menu</em>:</p>

  <dl>
    <dt><a name="optinfo-assumed_document_charset" id=
    "optinfo-assumed_document_charset">Assumed document character
    set</a>
    </dt>

    <dd>
      <p>This option changes the handling of documents which do not
      explicitly specify a charset. Normally Lynx assumes that
      8-bit characters in those documents are encoded according to
      iso-8859-1 (the official default for the HTTP protocol).
      Unfortunately, many non-English web pages "forget" to include
      proper charset info; this option helps you to browse those
      broken pages if you know by some means what the charset
      is.</p>

      <p>When the value given here or by an -assume_charset command
      line flag is in effect, Lynx will treat documents as if they
      were encoded accordingly. This option active when &ldquo;Raw
      8-bit or CJK Mode&rdquo; is OFF.</p>
    </dd>

    <dt><a name="optinfo-auto_session" id=
    "optinfo-auto_session">Auto Session</a>
    </dt>

    <dd>
      <p>Lynx can save and restore useful information about your
      browsing history. Use this setting to enable or disable the
      feature.</p>
    </dd>

    <dt><a name="optinfo-bad_html_messages" id=
    "optinfo-bad_html_messages">Bad HTML messages</a>
    </dt>

    <dd>
      <p>Suppress or redirect Lynx's messages about "Bad HTML":</p>

      <dl>
        <dt>Ignore</dt>

        <dd>
          <p>do not warn; no details are written to the
          trace-file.</p>
        </dd>

        <dt>Add to trace-file</dt>

        <dd>
          <p>add the detailed warning message to the
          trace-file.</p>
        </dd>

        <dt>Add to LYNXMESSAGES</dt>

        <dd>
          <p>add the detailed warning message to the message page
          at "LYNXMESSAGES:".</p>
        </dd>

        <dt>Warn, point to trace-file</dt>

        <dd>
          <p>show a warning message on the status line; the
          complete message is written to the trace-file.</p>
        </dd>
      </dl>
    </dd>

    <dt><a name="optinfo-bookmark_file" id=
    "optinfo-bookmark_file">Bookmark file</a>
    </dt>

    <dd>
      <p>When multi-bookmarks is OFF, this is the filename and
      location of your default personal bookmark file. Enter
      &ldquo;<samp>B</samp>&rdquo; to modify the filename and/or
      location via the <a href="keystrokes/edit_help.html">Line
      Editor</a>. Bookmark files allow frequently traveled links to
      be stored in personal easy to access files.</p>

      <p>Using the &ldquo;<samp>a</samp>&rdquo;dd bookmark link
      command (see <a href="#Bookmarks">Lynx bookmarks</a>) you may
      save any link that does not have associated POST content into
      a bookmark file. All bookmark files must be in or under your
      account's home directory. If the location specified does not
      begin with a dot-slash (./), its presence will still be
      assumed, and referenced to the home directory.</p>

      <p>When multi-bookmarks is STANDARD or ADVANCED, entering
      &ldquo;<samp>B</samp>&rdquo; will invoke a menu of up to 26
      bookmark files (associated with the letters of the English
      alphabet), for editing their filenames and locations
      (<em>filepath</em>), and descriptions.</p>

      <p>Lynx will create bookmark files, if they do not already
      exist, when you first &ldquo;<samp>a</samp>&rdquo;dd a
      bookmark link to them. However, if you've specified a
      subdirectory (e.g., ./BM/lynx_bookmarks.html), that
      subdirectory must already exist. Note that on VMS you should
      use the URL syntax for the filepath (e.g., <em>not</em>
      [.BM]lynx_bookmarks.html).</p>
    </dd>

    <dt><a name="optinfo-collapse_br_tags" id=
    "optinfo-collapse_br_tags">Collapse BR tags</a>
    </dt>

    <dd>
      <p>If <em>Collapse BR tags</em> is turned off, Lynx will not
      collapse serial <code>BR</code> tags. If turned on, i.e.,
      &ldquo;collapse&rdquo;, two or more concurrent
      <code>BR</code>s will be collapsed into a single line break.
      Note that the valid way to insert extra blank lines in HTML
      is via a <code>PRE</code> block with only newlines in the
      block.</p>
    </dd>

    <dt><a name="optinfo-cookies" id="optinfo-cookies">Cookies</a>
    </dt>

    <dd>
      <p>This option allows you to tell how to handle cookies:
      <em>ignore</em>, prompt (<em>ask user</em>) or <em>accept
      all</em>.</p>
    </dd>

    <dt><a name="optinfo-display_charset" id=
    "optinfo-display_charset">Display Character set</a>
    </dt>

    <dd>
      <p>This option allows you to set up the default character set
      for your specific terminal. The display character set
      provides a mapping from the character encodings of viewed
      documents and from HTML entities into viewable characters. It
      should be set according to your terminal's character set so
      that characters other than 7-bit ASCII can be displayed
      correctly, using approximations if necessary. You must have
      the selected character set installed on your terminal. (Since
      Lynx supports a wide range of platforms it may be useful to
      note that cpXXX codepages used within IBM PC computers, and
      windows-xxxx within native MS-Windows apps.)</p>
    </dd>

    <dt><a name="optinfo-editor" id="optinfo-editor">Editor</a>
    </dt>

    <dd>
      <p>The editor to be invoked when editing browsable files,
      when sending mail or comments, when preparing a news article
      for posting, and for external TEXTAREA editing. The full
      pathname of the editor command should be specified when
      possible.</p>

      <p>If a full pathname is given, this helps Lynx provide for
      detecting if options were also provided in this field. In
      this case, it will also quote the pathname, allowing for
      embedded blanks and other special characters that might
      confuse the shell which starts the editor program.</p>
    </dd>

    <dt><a name="optinfo-emacs_keys" id="optinfo-emacs_keys">Emacs
    keys</a>
    </dt>

    <dd>
      <p>If set to ON then the CTRL-P, CTRL-N, CTRL-F, and CTRL-B
      keys will be mapped to up-arrow, down-arrow, right-arrow, and
      left-arrow, respectively. Otherwise, they remain mapped to
      their configured bindings (normally UP_TWO lines, DOWN_TWO
      lines, NEXT_PAGE, and PREV_PAGE, respectively).</p>

      <p>Note: this has no direct effect on the line-editor's key
      bindings.</p>
    </dd>

    <dt><a name="optinfo-execution_links" id=
    "optinfo-execution_links">Execution links</a>
    </dt>

    <dd>
      <p>This deals with execution of local scripts or links. Local
      execution is activated when Lynx is first set up. If it has
      not been activated you will not see this option in the
      <em>Options Menu</em>.</p>

      <p>When a local execution script is encountered Lynx checks
      the users options to see whether the script can be executed.
      Users have the following options:</p>

      <dl>
        <dt>Always off</dt>

        <dd>
          <p>Local execution scripts will never be executed</p>
        </dd>

        <dt>For Local files only</dt>

        <dd>
          <p>Local execution scripts will only be executed if the
          script to be executed resides on the local machine, and
          is referenced by a URL that begins with
          <em>file://localhost</em></p>
        </dd>

        <dt>Always on</dt>

        <dd>
          <p>All local execution scripts will be executed</p>
        </dd>
      </dl>
    </dd>

    <dd>
      <p>If the users options permit the script to be executed Lynx
      will spawn a shell and run the script. If the script cannot
      be executed Lynx will show the script within the Lynx window
      and inform the user that the script is not allowed to be
      executed and will ask the user to check his/her options.</p>
    </dd>

    <dt><a name="optinfo-ftp_sort_criteria" id=
    "optinfo-ftp_sort_criteria">FTP sort criteria</a>
    </dt>

    <dd>
      <p>This option allows you to specify how files will be sorted
      within FTP listings. The current options include "<code>By
      Filename</code>", "<code>By Size</code>", "<code>By
      Type</code>", and "<code>By Date</code>".</p>
    </dd>

    <dt><a name="optinfo-html_error_recovery" id=
    "optinfo-html_error_recovery">HTML error recovery</a>
    </dt>

    <dd>
      <p>Select the <a href=
      "keystrokes/option_help.html#tagsoup">recovery mode</a> used
      by Lynx.</p>
    </dd>

    <dt><a name="optinfo-http_protocol" id=
    "optinfo-http_protocol">HTTP protocol</a>
    </dt>

    <dd>
      <p>Normally Lynx negotiates HTTP/1.0, because it does not
      support chunked transfer (a requirement for all HTTP/1.1
      clients), although it supports several other features of
      HTTP/1.1. You may encounter a server which does not support
      HTTP/1.0 which can be used by switching to the later
      protocol.</p>
    </dd>

    <dt><a name="optinfo-idna_mode" id=
    "optinfo-idna_mode">Internationalized domain names</a>
    </dt>

    <dd>
      Convert internationalized domain names to and from ASCII.
      <dl>
        <dt>IDNA 2003</dt>

        <dd>Convert using the older &ldquo;transitional&rdquo;
        scheme.</dd>

        <dt>IDNA 2008</dt>

        <dd>Convert using the newer &ldquo;non-transitional&rdquo;
        scheme.</dd>

        <dt>IDNA TR46</dt>

        <dd>Use IDNA 2008 with the amendments from Unicode <a href=
        "http://www.unicode.org/reports/tr46">Technical Report
        46</a>.</dd>

        <dt>IDNA Compatible</dt>

        <dd>First try converting using IDNA 2008, and if
        unsuccessful, try IDNA 2003.</dd>
      </dl>
    </dd>

    <dt><a name="optinfo-invalid_cookie_prompting" id=
    "optinfo-invalid_cookie_prompting">Invalid-Cookie Prompting</a>
    </dt>

    <dd>
      <p>This allows you to tell how to handle invalid cookies:
      <em>prompt normally</em> to prompt for each cookie, <em>force
      yes-response</em> to reply "yes" to each prompt, <em>force
      no-response</em> to reply "no" to each prompt.</p>
    </dd>

    <dt><a name="optinfo-keypad_mode" id=
    "optinfo-keypad_mode">Keypad mode</a>
    </dt>

    <dd>
      <p>This option gives the choice among navigating with the
      arrow keys, or having every link numbered so that the links
      may be selected or made current by numbers as well as using
      the arrow keys, or having every link as well as every form
      field numbered so that they can be selected or sought by
      numbers. See the<br>
      &nbsp;&nbsp;<a href="keystrokes/follow_help.html">Follow link
      (or page) number:</a> and<br>
      &nbsp;&nbsp;<a href=
      "keystrokes/follow_help.html#select-option">Select option (or
      page) number:</a><br>
      help for more information.</p>
    </dd>

    <dt><a name="optinfo-line_edit_style" id=
    "optinfo-line_edit_style">Line edit style</a>
    </dt>

    <dd>
      <p>This option allows you to set alternative key bindings for
      the built-in line editor, if alternative line-edit bindings
      have been compiled in. Otherwise, Lynx uses the <a href=
      "keystrokes/edit_help.html">Default Binding</a>.</p>
    </dd>

    <dt><a name="optinfo-local_directory_sort_criteria" id=
    "optinfo-local_directory_sort_criteria">Local directory sort
    criteria</a>
    </dt>

    <dd>
      <p>This applies to directory editing. Files and directories
      can be presented in the following ways:</p>

      <dl>
        <dt>Mixed style</dt>

        <dd>
          <p>Files and directories are listed together in
          alphabetical order.</p>
        </dd>

        <dt>Directories first</dt>

        <dd>
          <p>Files and directories are separated into two
          alphabetical lists. Directories are listed first.</p>
        </dd>

        <dt>Files first</dt>

        <dd>
          <p>Files and directories are separated into two
          alphabetical lists. Files are listed first.</p>
        </dd>
      </dl>
    </dd>

    <dt><a name="optinfo-local_directory_sort_order" id=
    "optinfo-local_directory_sort_order">Local directory sort
    order</a>
    </dt>

    <dd>
      <p>The Options Form also allows you to sort by the file
      attributes.</p>

      <dl>
        <dt>By name</dt>

        <dd>
          <p>by filename (the default)</p>
        </dd>

        <dt>By size</dt>

        <dd>
          <p>by file size, in descending order</p>
        </dd>

        <dt>By date</dt>

        <dd>
          <p>by file modification time, in descending order</p>
        </dd>

        <dt>By mode</dt>

        <dd>
          <p>by file protection</p>
        </dd>

        <dt>By type</dt>

        <dd>
          <p>by filename suffix, e.g., the text beginning with
          &ldquo;.&rdquo;</p>
        </dd>

        <dt>By user</dt>

        <dd>
          <p>by file owner's user-id</p>
        </dd>

        <dt>By group</dt>

        <dd>
          <p>by file owner's group-id</p>
        </dd>
      </dl>
    </dd>

    <dt><a name="optinfo-multi_bookmarks" id=
    "optinfo-multi_bookmarks">Multi-bookmarks</a>
    </dt>

    <dd>
      <p>Lynx supports a default bookmark file, and up to 26 total
      bookmark files (see below). When multi-bookmarks is OFF, the
      default bookmark file is used for the
      &ldquo;<samp>v</samp>&rdquo;iew bookmarks and
      &ldquo;<samp>a</samp>&rdquo;dd bookmark link commands. If
      multi-bookmark support is available in your account, the
      setting can be changed to STANDARD or ADVANCED. In STANDARD
      mode, a menu of available bookmarks always is invoked when
      you seek to view a bookmark file or add a link, and you
      select the bookmark file by its letter token (see
      <em>Bookmark file</em>, below) in that menu. In ADVANCED
      mode, you instead are prompted for the letter of the desired
      bookmark file, but can enter &ldquo;<samp>=</samp>&rdquo; to
      invoke the STANDARD selection menu, or <em>RETURN</em> for
      the default bookmark file.</p>
    </dd>

    <dt><a name="optinfo-password_for_anon_ftp" id=
    "optinfo-password_for_anon_ftp">Password for anonymous ftp</a>
    </dt>

    <dd>
      <p>If this is blank, Lynx will use your personal mail address
      as the anonymous ftp password. Though that is the convention,
      some users prefer to use some other string which provides
      less information. If the given value lacks a "@", Lynx also
      will use your computer's hostname as part of the password. If
      both this field and the personal mail address are blank, Lynx
      will use your $USER environment variable, or "WWWuser" if
      even the environment variable is unset.</p>
    </dd>

    <dt><a name="optinfo-pause_when_showing_message" id=
    "optinfo-pause_when_showing_message">Pause when showing
    message</a>
    </dt>

    <dd>
      <p>If set to "off", this overrides the INFOSECS setting in
      lynx.cfg, to eliminate pauses when displaying informational
      messages, like the "-nopause" command line option.</p>
    </dd>

    <dt><a name="optinfo-personal_mail_address" id=
    "optinfo-personal_mail_address">Personal mail address</a>
    </dt>

    <dd>
      <p>This mail address will be used to help you send files to
      yourself and will be included as the From: address in any
      mail or comments that you send. It will also be sent as the
      From: field in HTTP or HTTPS requests if inclusion of that
      header has been enabled via the NO_FROM_HEADER definition in
      <a href="#lynx.cfg">lynx.cfg</a> (the compilation default is
      not to send the header), or via the <em>-from</em> command
      line toggle.</p>
    </dd>

    <dt><a name="optinfo-personal_name_for_mail" id=
    "optinfo-personal_name_for_mail">Personal mail name</a>
    </dt>

    <dd>
      <p>This mail name will be included as the "X-Personal_Name"
      field in any mail or comments that you send if that header
      has not been disabled via the NO_ANONYMOUS_EMAIL definition
      in <a href="#lynx.cfg">lynx.cfg</a>.</p>
    </dd>

    <dt><a name="optinfo-popups_for_select" id=
    "optinfo-popups_for_select">Popups for select fields</a>
    </dt>

    <dd>
      <p>Lynx normally uses a popup window for the OPTIONs in form
      SELECT fields when the field does not have the MULTIPLE
      attribute specified, and thus only one OPTION can be
      selected. The use of popup windows can be disabled by
      changing this setting to OFF, in which case the OPTIONs will
      be rendered as a list of radio buttons. Note that if the
      SELECT field does have the MULTIPLE attribute specified, the
      OPTIONs always are rendered as a list of checkboxes.</p>
    </dd>

    <dt><a name="optinfo-preferred_doc_language" id=
    "optinfo-preferred_doc_language">Preferred document
    language</a>
    </dt>

    <dd>
      <p>The language you prefer if multi-language files are
      available from servers. Use RFC 1766 abbreviations, e.g., en
      for English, fr for French, etc. Can be a comma-separated
      list, which may be interpreted by servers as descending order
      of preferences. You can also make your order of preference
      explicit by using q factors as defined by the HTTP protocol,
      for servers which understand it, for example:
      da,&nbsp;en-gb;q=0.8,&nbsp;en;q=0.7</p>
    </dd>

    <dt><a name="optinfo-preferred_doc_charset" id=
    "optinfo-preferred_doc_charset">Preferred document charset</a>
    </dt>

    <dd>
      <p>The character set you prefer if sets in addition to
      ISO-8859-1 and US-ASCII are available from servers. Use MIME
      notation (e.g., ISO-8859-2) and do not include ISO-8859-1 or
      US-ASCII, since those values are always assumed by default.
      Can be a comma-separated list, which may be interpreted by
      servers as descending order of preferences. You can also make
      your order of preference explicit by using q factors as
      defined by the HTTP protocol, for servers which understand
      it, for example: iso-8859-5,&nbsp;utf-8;q=0.8</p>
    </dd>

    <dt><a name="optinfo-preferred_encoding" id=
    "optinfo-preferred_encoding">Preferred encoding</a>
    </dt>

    <dd>
      <p>When doing a GET, lynx tells what types of compressed data
      it can decompress (the "Accept-Encoding:" string). This is
      determined by compiled-in support for decompression or
      external decompression programs. Use this option to select
      none, one or all of the supported decompression types.</p>
    </dd>

    <dt><a name="optinfo-preferred_media_type" id=
    "optinfo-preferred_media_type">Preferred media type</a>
    </dt>

    <dd>
      <p>When doing a GET, lynx lists the MIME types which it knows
      how to present (the "Accept:" string). Depending on your
      system configuration, the mime.types or other data given by
      the GLOBAL_EXTENSION_MAP may include many entries that lynx
      really does not handle. Use this option to select one of the
      built-in subsets of the MIME types that lynx could list in
      the Accept.</p>

      <dl>
        <dt>Accept lynx's internal types</dt>

        <dd>
          <p>list only the types that are compiled into lynx.</p>
        </dd>

        <dt>Also accept lynx.cfg's types</dt>

        <dd>
          <p>lists types defined in lynx.cfg, e.g., the VIEWER and
          Cern RULE or RULESFILE settings.</p>
        </dd>

        <dt>Also accept user's types</dt>

        <dd>
          <p>lists types from the PERSONAL_EXTENSION_MAP setting in
          lynx.cfg</p>
        </dd>

        <dt>Also accept system's types</dt>

        <dd>
          <p>lists types from the GLOBAL_EXTENSION_MAP setting in
          lynx.cfg</p>
        </dd>

        <dt>Accept all types</dt>

        <dd>
          <p>adds the types that are in lynx's built-in tables for
          external programs that may be used to present a
          document.</p>
        </dd>
      </dl>
    </dd>

    <dt><a name="optinfo-raw_8_bit" id="optinfo-raw_8_bit">Raw
    8-bit or CJK Mode</a>
    </dt>

    <dd>
      <p>Tells Lynx whether 8-bit characters are assumed to
      correspond with the display character set and therefore are
      processed without translation via the chartrans conversion
      tables:</p>

      <ul>
        <li>Should be ON by default when the display character set
        is one of the Asian (CJK) sets and the 8-bit characters are
        Kanji multibytes.</li>

        <li>Should be OFF for the other display character sets, but
        can be turned ON when the document's charset is unknown
        (e.g., is not ISO-8859-1 and no charset parameter was
        specified in a reply header from an HTTP server to indicate
        what it is) but you know by some means that you have the
        matching display character set selected.</li>

        <li>Should be OFF when an Asian (CJK) set is selected but
        the document is ISO-8859-1 or another &ldquo;assumed
        document character set&rdquo;.</li>
      </ul>

      <p>The setting also can be toggled via the RAW_TOGGLE
      command, normally mapped to &ldquo;<samp>@</samp>&rdquo;, and
      at startup via the <em>-raw</em> switch.</p>
    </dd>

    <dt><a name="optinfo-send_user_agent" id=
    "optinfo-send_user_agent">Send User-Agent header</a>
    </dt>

    <dd>
      <p>Controls whether the user-agent string will be sent.</p>
    </dd>

    <dt><a name="optinfo-session_file" id=
    "optinfo-session_file">Session file</a>
    </dt>

    <dd>
      <p>Define the file name where lynx will store user sessions.
      This setting is used only when <em>Auto Session</em> is
      enabled.</p>
    </dd>

    <dt><a name="optinfo-show_color" id="optinfo-show_color">Show
    color</a>
    </dt>

    <dd>
      <p>This option will be present if color support is available.
      If set to ON or ALWAYS, color mode will be forced on if
      possible. If (n)curses color support is available but cannot
      be used for the current terminal type, selecting ON is
      rejected with a message. If set to OFF or NEVER, color mode
      will be turned off.</p>

      <p>ALWAYS and NEVER are not offered in anonymous accounts. If
      saved to a <em>.lynxrc</em> file in non-anonymous accounts,
      ALWAYS will cause Lynx to set color mode on at startup if
      supported. If Lynx is built with the slang library, this is
      equivalent to having included the <em>-color</em> command
      line switch or having the <em>COLORTERM</em> environment
      variable set. If color support is provided by curses or
      ncurses, this is equivalent to the default behavior of using
      color when the terminal type supports it. If (n)curses color
      support is available but cannot be used for the current
      terminal type, the preference can still be saved but will
      have no effect.</p>

      <p>A saved value of NEVER will cause Lynx to assume a
      monochrome terminal at startup. It is similar to the
      <em>-nocolor</em> switch, but (when the slang library is
      used) can be overridden with the <em>-color</em> switch.</p>

      <p>If the setting is OFF or ON when the current options are
      saved to a <em>.lynxrc</em> file, the default startup
      behavior is retained, such that color mode will be turned on
      at startup only if the terminal info indicates that you have
      a color-capable terminal, or (when the slang library is used)
      if forced on via the <em>-color</em> switch or
      <em>COLORTERM</em> variable. This default behavior always is
      used in anonymous accounts, or if the <em>option_save</em>
      restriction is set explicitly. If for any reason the startup
      color mode is incorrect for your terminal, set it
      appropriately on or off via this option.</p>
    </dd>

    <dt><a name="optinfo-show_cursor" id="optinfo-show_cursor">Show
    cursor</a>
    </dt>

    <dd>
      <p>Lynx normally hides the cursor by positioning it to the
      right and if possible the very bottom of the screen, so that
      the current link or OPTION is indicated solely by its
      highlighting or color. If show cursor is set to ON, the
      cursor will be positioned at the left of the current link or
      OPTION. This is helpful when Lynx is being used with a speech
      or braille interface. It also is useful for sighted users
      when the terminal cannot distinguish the character attributes
      used to distinguish the current link or OPTION from the
      others in the screen display.</p>
    </dd>

    <dt><a name="optinfo-show_dot_files" id=
    "optinfo-show_dot_files">Show dot files</a>
    </dt>

    <dd>
      <p>If display/creation of hidden (dot) files/directories is
      enabled, you can turn the feature on or off via this
      setting.</p>
    </dd>

    <dt><a name="optinfo-show_images" id="optinfo-show_images">Show
    images</a>
    </dt>

    <dd>
      <p>This allows you to select the way in which Lynx shows
      image links. These are the available selections:</p>

      <ul>
        <li><em>ignore</em> to suppress the links altogether,</li>

        <li><em>as labels</em> to show the descriptive text for the
        link</li>

        <li><em>as links</em>, which allows you to use an external
        viewer</li>
      </ul>
      <br>
    </dd>

    <dt><a name="optinfo-show_scrollbar" id=
    "optinfo-show_scrollbar">Show scrollbar</a>
    </dt>

    <dd>
      <p>This allows you to enable (show) or disable (hide) the
      scrollbar on the right-margin of the display. This feature is
      available with ncurses or slang libraries.</p>
    </dd>

    <dt><a name="optinfo-show_transfer_rate" id=
    "optinfo-show_transfer_rate">Show transfer rate</a>
    </dt>

    <dd>
      <p>This allows you to select the way in which Lynx shows its
      progress in downloading large pages. It displays its progress
      in the status line. These are the available selections:</p>

      <ul>
        <li>Do not show rate</li>

        <li>Local directory sort order</li>

        <li>Show dot files</li>

        <li>Execution links</li>

        <li>Pause when showing message</li>

        <li>Show transfer rate</li>
      </ul>
      <br>
    </dd>

    <dt><a name="optinfo-ssl_prompting" id=
    "optinfo-ssl_prompting">SSL Prompting</a>
    </dt>

    <dd>
      <p>This allows you to tell how to handle errors detected in
      SSL connections <em>prompt normally</em> to prompt for each
      cookie, <em>force yes-response</em> to reply "yes" to each
      prompt, <em>force no-response</em> to reply "no" to each
      prompt.</p>
    </dd>

    <dt><a name="optinfo-trim_blank_lines" id=
    "optinfo-trim_blank_lines">Trim blank lines</a>
    </dt>

    <dd>
      <p>If <em>Trim blank lines</em> is turned off, Lynx will not
      trim trailing blank lines from the document. Also, Lynx will
      not collapse <code>BR</code>-tags onto the previous line when
      it happens to be empty as part of the <em>Collapse BR
      tags</em> feature.</p>
    </dd>

    <dt><a name="optinfo-type_of_search" id=
    "optinfo-type_of_search">Type of Search</a>
    </dt>

    <dd>
      <p>Searching type has two possible values: CASE INSENSITIVE
      (default) and CASE SENSITIVE. The searching type effects
      inter-document searches only, and determines whether searches
      for words within documents will be done in a case-sensitive
      or case-insensitive manner.</p>
    </dd>

    <dt><a name="optinfo-use_html5_charset" id=
    "optinfo-use_html5_charset">Use HTML5 charset replacements</a>
    </dt>

    <dd>
      <p>This option allows lynx to treat pages with ISO-8859-1
      (Latin1) or ASCII encoding as if they were Windows 1252. That
      allows a few punctuation characters to be shown.</p>
    </dd>

    <dt><a name="optinfo-locale_based_charset" id=
    "optinfo-locale_based_charset">Use locale-based character
    set</a>
    </dt>

    <dd>
      <p>This option allows you to request lynx to obtain a MIME
      name from the operating system which corresponds to your
      locale setting. If successful, it overrides the normal
      setting of the display character set.</p>
    </dd>

    <dt><a name="optinfo-underline_links" id=
    "optinfo-underline_links">Underline links</a>
    </dt>

    <dd>
      <p>Use underline-attribute rather than bold for links.</p>
    </dd>

    <dt><a name="optinfo-use_passive_ftp" id=
    "optinfo-use_passive_ftp">Use Passive FTP</a>
    </dt>

    <dd>
      <p>This allows you to change whether Lynx uses passive ftp
      connections.</p>
    </dd>

    <dt><a name="optinfo-user_agent" id=
    "optinfo-user_agent">User-Agent header</a>
    </dt>

    <dd>
      <p>The header string which Lynx sends to HTTP servers to
      indicate the User-Agent is displayed here. Changes may be
      disallowed via the <em>-restrictions</em> switch. Otherwise,
      the header can be changed temporarily to a string such as
      <em>L_y_n_x/2.9.0</em> for access to sites which discriminate
      against Lynx based on checks for the presence of "Lynx" in
      the header. If the User-Agent header has been changed, it can
      be restored to the built-in default value by deleting the
      modified string in the Options Menu. Whenever the User-Agent
      header is changed, the current document is reloaded, with the
      no-cache flags set, on exit from the Options Menu. Changes of
      the header are not saved in the RC file.</p>
    </dd>

    <dd>
      <p><em id="noteUA">NOTE:</em> Some sites may regard
      misrepresenting the browser as fraudulent deception, or as
      gaining unauthorized access, if it is used to circumvent
      blocking that was intentionally put in place. Some browser
      manufacturers may find the transmission of their product's
      name objectionable. If you change the User-Agent string, it
      is your responsibility. The Options Menu issues a reminder
      whenever the header is changed to one which does not include
      "Lynx" or "L_y_n_x".</p>
    </dd>

    <dt><a name="optinfo-user_mode" id="optinfo-user_mode">User
    Mode</a>
    </dt>

    <dd>
      <p>There are four possible choices: Novice, Intermediate,
      Advanced, and Minimal.</p>

      <dl>
        <dt>Novice</dt>

        <dd>
          <p>In Novice mode two lines of help are displayed at the
          bottom of the screen.</p>
        </dd>

        <dt>Intermediate</dt>

        <dd>
          <p>Intermediate mode turns off the help lines.</p>
        </dd>

        <dt>Advanced</dt>

        <dd>
          <p>Advanced mode displays the URL of the currently
          selected link at the bottom of the screen.</p>
        </dd>

        <dt>Minimal</dt>

        <dd>
          <p>Minimal mode eliminates the URL on the bottom line,
          the forward/backward indicator in the upper left, and
          most status-line messages.</p>
        </dd>
      </dl>
    </dd>

    <dt><a name="optinfo-verbose_images" id=
    "optinfo-verbose_images">Verbose Images</a>
    </dt>

    <dd>
      <p>Controls whether or not Lynx replaces the [LINK], [INLINE]
      and [IMAGE] comments (for images without ALT) with filenames
      of these images. This is extremely useful because now we can
      determine immediately what images are just decorations
      (button.gif, line.gif) and what images are important. This
      setting can also be toggled on startup via the
      <em>-verbose</em> switch.</p>
    </dd>

    <dt><a name="optinfo-vi_keys" id="optinfo-vi_keys">VI keys</a>
    </dt>

    <dd>
      <p>If set to ON then the lowercase h, j, k, and l keys will
      be mapped to left, down, up, and right arrow, respectively.
      The uppercase H, J, K, and L keys remain mapped to their
      configured bindings (normally HELP, JUMP, KEYMAP, and LIST,
      respectively).</p>

      <p>Note: this has no effect on the line-editor's key
      bindings.</p>
    </dd>

    <dt><a name="optinfo-visited_pages" id=
    "optinfo-visited_pages">Visited Pages</a>
    </dt>

    <dd>
      <p>Enable several different views of the visited links:</p>

      <dl>
        <dt>By First Visit</dt>

        <dt>By First Visit Reversed</dt>

        <dt>As Visit Tree</dt>

        <dt>By Last Visit</dt>

        <dt>By Last Visit Reversed</dt>
      </dl>
      <br>
    </dd>

    <dt><a name="optinfo-x_display" id="optinfo-x_display">X
    Display</a>
    </dt>

    <dd>
      <p>This option is only relevant to X Window users. The
      DISPLAY (Unix) or DECW$DISPLAY (VMS) variable is picked up
      automatically from the environment if it has been previously
      set.</p>
    </dd>
  </dl>

  <p>[<a href="#ToC-InteractiveOptions">ToC</a>]</p>

  <h2 id="id-Mail"><a name="Mail" id="Mail">Comments and mailto:
  links</a></h2>

  <p>At any time while viewing documents within Lynx, you may use
  the &ldquo;<samp>c</samp>&rdquo; command to send a mail message
  to the owner of the current document if the author of the
  document has specified ownership. (Note to authors: if you want
  to assign the ownership to your document, you need to add into
  HEAD section a LINK element with appropriate value for REV
  attribute. Two values are recognized: <em>owner</em> and
  <em>made</em> (these are case insensitive). For example,</p>

  <pre>
&lt;HEAD&gt;
    &hellip;
    &lt;LINK REV="made" HREF="mailto:user@somedomain.com"&gt;
    &hellip;
&lt;/HEAD&gt;
</pre>
  <p>You may also add a TITLE attribute with, for example, the name
  of your page) If no ownership is specified then comments are
  disabled. Certain links called <a href=
  "lynx_url_support.html#mailto_url">mailto:</a> links will also
  allow you to send mail to other people. Using the mail features
  within Lynx is straightforward.</p>

  <p>Once you have decided to send a comment or have selected a
  <em>mailto:</em> link a new screen will appear showing you to
  whom you are sending the message. Lynx will ask for your name,
  your e-mail address, and the subject of the message. If you have
  filled in the "personal mail address" field in the <em>Options
  Menu</em>, your e-mail address will be filled in automatically.
  After entering the above information, if you have an editor
  defined in the <em>Options Menu</em> and you are not an anonymous
  user then your specified editor will be spawned for you so that
  you can enter your message. If you do not have an editor defined
  or you are an anonymous user, a simple line mode input scheme
  will allow you to enter your message.</p>

  <p>To finish sending the message, exit your spawned editor or, if
  you are using the simple line mode input scheme, type a
  &ldquo;<samp>.</samp>&rdquo; (period) on a line by itself. You
  will be asked a final time whether to send the message. If you
  press &ldquo;<samp>y</samp>&rdquo;, you will be prompted whether
  to append your signature file if one was defined in <a href=
  "#lynx.cfg">lynx.cfg</a> and is accessible, and then the message
  will be sent, whereas if you press &ldquo;<samp>n</samp>&rdquo;
  the message will be deleted. Entering Control-G in response to
  any prompts also will cancel the mailing.</p>

  <p>[<a href="#ToC-Mail">ToC</a>]</p>

  <h2 id="id-News"><a name="News" id="News">USENET News posting</a></h2>

  <p>While reading <a href=
  "http://www.w3.org/LineMode/User/AboutNewsServers.html">news</a>
  articles with Lynx you should see a link that says <em>Reply to:
  user@host</em> and, if the nntp server from which you received
  the article supports posting from your site, a link that says
  <em>Followup to: newsgroup(s)</em></p>

  <dl>
    <dt>Reply to user@host</dt>

    <dd>
      <p>user@host will correspond to the mail address of the
      person who posted the news article. Selecting the link will
      allow you to send a message to the person who wrote the
      message you are currently viewing. You will be given the
      option of including the original message in your reply.</p>
    </dd>

    <dt>Followup to newsgroup(s)</dt>

    <dd>
      <p>Selecting this link will allow you to post back to the
      newsgroup that you are currently reading and any newsgroups
      to which the message was cross-posted. You will be given the
      option of including the original message in your reply. Once
      you have typed in your message, you will be asked for
      confirmation of whether to proceed with the posting, and
      whether to append your signature file if one was defined in
      <a href="#lynx.cfg">lynx.cfg</a> and is accessible. See
      <a href="lynx_url_support.html">Supported URLs</a> for more
      information about the URL schemes for posting or sending
      followups (replies) to nntp servers with Lynx. [<a href=
      "#ToC-News">ToC</a>]</p>
    </dd>
  </dl>

  <p>See also <a href=
  "http://www.w3.org/Protocols/rfc977/rfc977">RFC 977</a>.</p>

  <h2 id="id-Bookmarks"><a name="Bookmarks" id="Bookmarks">Lynx
  bookmarks</a></h2>

  <p>Bookmarks are entries in your <em>bookmark file</em>, which
  record the URL of a document you may want to return to easily,
  with a name of your choice to identify the document. To use
  bookmarks you must first have specified a name for your bookmark
  file in <a href="#lynx.cfg">lynx.cfg</a> or via the <em>Options
  Menu</em>.</p>

  <p>To save a bookmark to the document you wish to place in the
  bookmark file press the &ldquo;<samp>a</samp>&rdquo; key and you
  will be asked:</p>

  <blockquote>
    <p>Save D)ocument or L)ink to bookmark file or C)ancel?
    (d,l,c):</p>
  </blockquote>

  <p>Answer &ldquo;<samp>d</samp>&rdquo; to save a link to the
  document you are currently viewing or
  &ldquo;<samp>l</samp>&rdquo; to save the link that is currently
  selected on the page. Selecting &ldquo;<samp>c</samp>&rdquo; will
  cancel without saving anything to your bookmark file.</p>

  <p>A bookmark file will be created in conjunction with acting on
  the &ldquo;<samp>a</samp>&rdquo;dd command if it does not already
  exist. Otherwise, the link will be added to the bottom of the
  pre-existing bookmark file. You must have created a bookmark file
  via the &ldquo;<samp>a</samp>&rdquo;dd command before you can
  view it.</p>

  <p>Use the &ldquo;<samp>v</samp>&rdquo; command to view the list
  of bookmarks you have saved. While viewing the bookmark list you
  may select a bookmark as you would any other link.</p>

  <p>You can remove a link from the bookmark list by pressing the
  &ldquo;<samp>r</samp>&rdquo; key when positioned on that link.
  You also can use a standard text editor (e.g., via the
  &ldquo;<samp>e</samp>&rdquo;dit command while viewing a bookmark
  file, if an external editor has been defined via the <em>Options
  menu</em>) to delete or re-order links in the bookmark file, or
  to modify a link name by editing the content of the
  <em>A</em>nchor element for the link, but you should not change
  the format within the line for the link, consisting of an
  <em>LI</em> element followed by the <em>A</em>nchor element, nor
  cause the line to become wrapped to a second line. You similarly
  can change the link destination by editing the double-quoted
  value for the <em>HREF</em> attribute in the <em>A</em>nchor
  start tag, but you should not otherwise change the spacing within
  the start tag, nor add other attributes. You can add a new link
  while editing by copying an existing line for a link, to ensure
  the proper format, and then modifying its <em>HREF</em> value and
  <em>A</em>nchor content, but you should not add any other HTML
  markup to the bookmark file. If the format and spacing (other
  than the <em>A</em>nchor content or <em>HREF</em> value) within
  lines is changed or other HTML markup is added, the
  &ldquo;<samp>a</samp>&rdquo;dd and
  &ldquo;<samp>r</samp>&rdquo;emove commands may not work
  properly.</p>

  <p>When multi-bookmarks (see <a href=
  "#InteractiveOptions">Options Menu</a>) is OFF, you will always
  view or add links to the default bookmark file. When it is
  STANDARD, a menu of up to 26 bookmark files will be invoked, and
  you select the bookmark file by entering its letter token. When
  it is ADVANCED, you will be prompted for the letter token, but
  can enter &ldquo;<samp>=</samp>&rdquo; to invoke the STANDARD
  selection menu, or <em>RETURN</em> for the default bookmark file.
  [<a href="#ToC-Bookmarks">ToC</a>]</p>

  <h2 id="id-Jumps"><a name="Jumps" id="Jumps">Jump Command</a></h2>

  <p>Similar to the bookmarks file is the jumps file: for an
  example, look in the <em>samples</em> subdirectory in the
  distribution package. To use the jumps command, create a
  <em>jumps file</em> with the same format as the sample file, but
  containing your own URLs &amp; short-cut names. Once you have
  done that, typing &ldquo;<samp>j</samp>&rdquo; prompts you to
  enter a short-cut name, which will take you straight to the URL
  associated with the short-cut in the jumps file, much like using
  &ldquo;<samp>g</samp>&rdquo;. If you want to check which
  short-cuts are available, type &ldquo;<samp>?</samp>&rdquo; at
  the jump prompt for the full list.</p>

  <p>You can set up a jumps file which makes Lynx prompt for
  parameters, e.g., as part of a search. Do this by putting a "%s"
  marker in the URL at each point where you want Lynx to fill in
  text. When you activate the corresponding jump, Lynx will prompt
  you for the parameters, one by one.</p>

  <p>All jump short-cuts you have entered are saved in a circular
  buffer in the same way as with &ldquo;<samp>g</samp>&rdquo; and
  &ldquo;<samp>/</samp>&gt;&rdquo; (search):</p>

  <p>previous entries can be retrieved with <em>up-arrow</em> or
  <em>down-arrow</em>.</p>

  <p>The jumps feature is especially useful for system
  administrators who have unsophisticated users to care for, but
  ordinary Lynx users who have a number of URLs they regularly
  visit while browsing may find using the jumps command speeds
  their movements.</p>

  <p>For more advice how to set up the jumps command on your system
  and how to define short-cut names, read <a href=
  "#lynx.cfg">lynx.cfg</a> .</p>

  <p>[<a href="#ToC-Jumps">ToC</a>]</p>

  <h2 id="id-DirEd"><a name="DirEd" id="DirEd">Directory
  Editing</a></h2>

  <p>Lynx offers extended DIRED support on Unix (on VMS the more
  powerful CSwing program is recommended for character cell
  terminals, and can be offered via Lynx as a jump shortcut or
  execution link). When a local directory is accessed using a URL
  of the form <em>file://localhost/path/</em>, a new set of
  commands is available. With DIRED support you can create, edit,
  delete, copy, and move files on your local system. The commands
  available in DIRED mode are</p>

  <dl>
    <dt><code>C)reate</code>
    </dt>

    <dd>
      <p>Type &ldquo;<samp>c</samp>&rdquo; to create a new file.
      New file will be empty.</p>
    </dd>

    <dt><code>D)ownload</code>
    </dt>

    <dd>
      <p>Type &ldquo;<samp>d</samp>&rdquo; to download using one of
      the pre-defined options.</p>
    </dd>

    <dt><code>E)dit</code>
    </dt>

    <dd>
      <p>Type &ldquo;<samp>e</samp>&rdquo; to spawn the editor
      defined in <em>Options Menu</em> and load a selected file for
      editing.</p>
    </dd>

    <dt><code>F)ull Menu</code>
    </dt>

    <dd>
      <p>Type &ldquo;<samp>f</samp>&rdquo; to show full menu of
      options available for selection. Menu may vary according to
      type of file selected and compression facilities available. 
      <!-- List of full menu options --></p>
    </dd>

    <dt><code>M)odify</code>
    </dt>

    <dd>
      <p>Type &ldquo;<samp>m</samp>&rdquo; to modify the name or
      location of file. Then type &ldquo;<samp>n</samp>&rdquo; to
      rename the file or &ldquo;<samp>l</samp>&rdquo; to move the
      file to a different location.</p>
    </dd>

    <dt><code>R)emove</code>
    </dt>

    <dd>
      <p>Type &ldquo;<samp>r</samp>&rdquo; to remove the selected
      file or directory.</p>
    </dd>

    <dt><code>T)ag</code>
    </dt>

    <dd>
      <p>Type &ldquo;<samp>t</samp>&rdquo; to tag highlighted file.
      Further operations will be performed on tagged files instead
      of highlighted ones.</p>
    </dd>

    <dt><code>U)pload</code>
    </dt>

    <dd>
      <p>Type &ldquo;<samp>u</samp>&rdquo; to upload a file to the
      present directory. An uploading method must have been
      pre-defined in <a href="#lynx.cfg">lynx.cfg</a> .</p>
    </dd>
  </dl>

  <p>[<a href="#ToC-DirEd">ToC</a>]</p>

  <h2 id="id-ColorMouse"><a name="ColorMouse" id="ColorMouse">Using
  Color &amp; the Mouse</a></h2>

  <p>A limited range of colors &amp; mouse commands are available,
  if the user chooses: see <em>lynx.cfg</em> for details. [<a href=
  "#ToC-ColorMouse">ToC</a>]</p>

  <h2 id="id-MiscKeys"><a name="MiscKeys" id="MiscKeys">Scrolling
  and Other useful commands</a></h2>

  <p>A summary of all the keystroke commands and their key bindings
  can be invoked via the KEYMAP command, normally mapped to
  &ldquo;<samp>k</samp>&rdquo; and &ldquo;<samp>K</samp>&rdquo;.
  The following describes some of the most commonly used
  commands.</p>

  <dl>
    <dt><strong><em>^A</em></strong>
    </dt>

    <dd>
      <p><em>Control-A</em> jumps you to the beginning of the
      current document. It is a synonym for the Keypad
      <em>Home</em> key, and can be used also when <em>Links are
      numbered</em> mode is on. The <em>Find</em> Function key also
      is a synonym, and ideally the latter has been mapped to the
      Function key labeled <em>Home</em> if you are using an IBM
      Enhanced Keyboard.</p>
    </dd>

    <dt><strong><em>^E</em></strong>
    </dt>

    <dd>
      <p><em>Control-E</em> jumps you to the end of the current
      document. It is a synonym for the Keypad <em>End</em> key,
      and can be used also when <em>Links are numbered</em> mode is
      on. The <em>Select</em> Function key also is a synonym, and
      ideally the latter has been mapped to the Function key
      labeled <em>End</em> if you are using an IBM Enhanced
      Keyboard.</p>
    </dd>

    <dt><strong><em>^B</em></strong>
    </dt>

    <dd>
      <p><em>Control-B</em> normally jumps you to the previous page
      of the current document, and thus is a synonym for the Keypad
      and Function <em>Page-Up</em> keys. However,
      <em>Control-B</em> acts as <em>right-arrow</em> when
      emacs-like key movement is enabled (see <a href=
      "#InteractiveOptions">Lynx Options Menu</a>).</p>
    </dd>

    <dt><strong><em>^F</em></strong>
    </dt>

    <dd>
      <p><em>Control-F</em> normally jumps you to the next page of
      the current document, and thus is a synonym for the Keypad
      and Function <em>Page-Down</em> keys. However,
      <em>Control-F</em> becomes <em>right-arrow</em> when
      emacs-like key movement is enabled.</p>
    </dd>

    <dt><strong><em>^N</em></strong>
    </dt>

    <dd>
      <p><em>Control-N</em> normally jumps you forward two lines in
      the current document. The VT220 <em>Remove</em> Function key
      (labeled <em>Delete</em> on IBM Enhanced keyboards, and
      distinct from their <em>Backspace</em> key) is a synonym.
      <em>Control-N</em> becomes <em>down-arrow</em> when
      emacs-like key movement is enabled.</p>
    </dd>

    <dt><strong><em>^P</em></strong>
    </dt>

    <dd>
      <p><em>Control-P</em> normally jumps you back two lines in
      the current document. The <em>Insert</em> Function key is a
      synonym. <em>Control-P</em> becomes <em>up-arrow</em> when
      emacs-like key movement is enabled.</p>
    </dd>

    <dt><strong><em>^K</em></strong>
    </dt>

    <dd>
      <p><em>Control-K</em> invokes the <a href=
      "keystrokes/cookie_help.html">Cookie Jar Page</a> if it
      contains cookies.</p>
    </dd>

    <dt><strong><em>^T</em></strong>
    </dt>

    <dd>
      <p><em>Control-T</em> toggles Lynx trace mode on and off.
      This is useful for diagnosing bad html. If you get a <em>Bad
      HTML</em> statusline message when loading a document, enter
      <em>Control-T</em> and then <em>Control-R</em> to reload the
      document in trace mode. You may then examine the <em>Lynx
      Trace Log</em> file with the <samp>;</samp> command if
      enabled (see below), watch out especially for lines marked
      with a number of asterisks &ldquo;<code>*****</code>&rdquo;.
      You also can submit the document for validation via links in
      the online help menu. If you are able to diagnose the
      problem, send a message about it to the document's
      author.</p>
    </dd>

    <dt><strong><em>^X</em></strong>
    </dt>

    <dd>
      <p><em>Control-X</em> invokes the <a href="#Cache">Cache Jar
      Page</a> if it contains cached documents.</p>
    </dd>

    <dt><strong><samp>E</samp></strong>
    </dt>

    <dd>
      <p>The &ldquo;<samp>E</samp>&rdquo; command allows you to
      edit the URL (or ACTION) of the current link and then use
      that as a goto URL. Pressing the &ldquo;<samp>E</samp>&rdquo;
      command will bring up a prompt asking you to edit the current
      link's URL. If you do not modify it, or completely delete it,
      or enter Control-G, the command will be cancelled. Otherwise,
      the request for the &ldquo;E&rdquo;dited URL will be sent
      with method GET, and will be entered into the circular buffer
      for goto URLs so that it can be accessed for further
      modification via the &ldquo;<samp>g</samp>&rdquo; command.
      Note that lower case &ldquo;e&rdquo; invokes the external
      editor for the current document.</p>
    </dd>

    <dt><strong><samp>g</samp></strong>
    </dt>

    <dd>
      <p>The &ldquo;<samp>g</samp>&rdquo; command allows any URL to
      be viewed. Pressing the &ldquo;<samp>g</samp>&rdquo; command
      will bring up a prompt asking for a URL. Type in the URL that
      you wish to view. All previously entered goto URLs are saved
      in a circular buffer, and can be accessed at the prompt by
      pressing the <em>up-arrow</em> or <em>down-arrow</em>
      keys.</p>
    </dd>

    <dt><strong><samp>G</samp></strong>
    </dt>

    <dd>
      <p>The &ldquo;<samp>G</samp>&rdquo; command allows you to
      edit the URL of the current document and then use that as a
      goto URL. Pressing the &ldquo;<samp>G</samp>&rdquo; command
      will bring up a prompt asking you to edit the current
      document's URL. If you do not modify it, or completely delete
      it, or enter Control-G, the command will be cancelled. If the
      current document has POST content associated with it, an
      Alert will be issued. If you do edit that URL, and it does
      not simply involve a fragment change (for seeking a position
      in the current document), the modified URL will be submitted
      with method GET and no POST content. If a modification of the
      current document's URL results in a submission, that modified
      URL will be entered into the circular buffer for goto URLs,
      and can be accessed for further modification via the
      &ldquo;<samp>g</samp>&rdquo; command.</p>
    </dd>

    <dt><strong><samp>z</samp></strong>
    </dt>

    <dd>
      <p>Lynx supports completely interruptible I/O processes.
      Press the &ldquo;<samp>z</samp>&rdquo; key at any time during
      a connect or transfer process and the process will be halted.
      If any data was transferred before the interrupt, it will be
      displayed.</p>
    </dd>

    <dt><strong><samp>)</samp></strong>
    </dt>

    <dd>
      <p>The <samp>)</samp> command jumps you forward half a page
      in the current document.</p>
    </dd>

    <dt><strong><samp>(</samp></strong>
    </dt>

    <dd>
      <p>The <samp>(</samp> command jumps you back half a page in
      the current document.</p>
    </dd>

    <dt><strong><samp>#</samp></strong>
    </dt>

    <dd>
      <p>The &ldquo;<samp>#</samp>&rdquo; command jumps you to the
      pseudo Toolbar or Banner if present in the current document.
      Use <em>left-arrow</em> to return from there to your previous
      position in the document.</p>
    </dd>

    <dt><strong><samp>!</samp></strong>
    </dt>

    <dd>
      <p>When &ldquo;<samp>!</samp>&rdquo; is pressed your default
      shell will be spawned. When you quit or exit the shell you
      will return to Lynx (usually <em>exit</em> under Unix and
      <em>logout</em> under VMS). This command is usually disabled
      for anonymous users. On VMS, &ldquo;<samp>$</samp>&rdquo;
      normally is a synonym.</p>
    </dd>

    <dt><strong><samp>=</samp></strong>
    </dt>

    <dd>
      <p>The &ldquo;<samp>=</samp>&rdquo; command shows information
      about the current document and the currently selected link if
      there is one. The number of lines in the file, URL, title,
      owner, and type are shown.</p>

      <p>Normally the information is shown formatted (with margins)
      for readability. You can make Lynx show the URL wrapped
      without margins, e.g., making it convenient for select/paste,
      by doing this:</p>

      <ul>
        <li>toggle line-wrapping off using
        &ldquo;<samp>|</samp>&rdquo;</li>

        <li>when line-wrapping is off, use the
        &ldquo;<samp>=</samp>&rdquo; command</li>
      </ul>
    </dd>

    <dt><strong><samp>;</samp></strong>
    </dt>

    <dd>
      <p>The <samp>;</samp> command shows the <em>Lynx Trace
      Log</em> (<em>Lynx.trace</em> in the home directory) if one
      has been started for the current session. If a log has not
      been started, any trace messages will be sent to the screen
      (and will disturb the normal display) unless the system
      supports piping and that was used to redirect stderr messages
      to a file. The log is started when Lynx trace mode is turned
      on via the <em>-trace</em> command line switch, or via the
      <em>Control-T</em> toggle, if Lynx has been compiled to log
      the trace and other stderr messages by default. If not,
      ability to create a log can be toggled on with the
      <em>-tlog</em> switch. Note that this ability is probably
      disabled in anonymous or validation accounts.</p>
    </dd>

    <dt><a name="asterisk-key" id=
    "asterisk-key"><strong><samp>*</samp></strong></a>
    </dt>

    <dd>
      <p>The &ldquo;<samp>*</samp>&rdquo; command toggles
      image_links mode on and off. When on, links will be created
      for all images, including inline images. If you have an image
      viewer mapped to the image's MIME type, you can activate such
      links to view an inline image. You should normally have this
      mode toggled off.</p>
    </dd>

    <dt><strong><samp>@</samp></strong>
    </dt>

    <dd>
      <p>The &ldquo;<samp>@</samp>&rdquo; command toggles raw 8-bit
      or CJK mode on and off. When on, the charset is assumed to
      match the selected character set and 8-bit characters are not
      reverse translated with respect to the ISO-8859-1 conversion
      tables.</p>
    </dd>

    <dt><a name="lbracket-key" id=
    "lbracket-key"><strong><samp>[</samp></strong></a>
    </dt>

    <dd>
      <p>The &ldquo;<samp>[</samp>&rdquo; command toggles
      pseudo_inlines mode on and off. When on, inline images which
      have no ALT string specified will have an <em>[INLINE]</em>
      pseudo-ALT string inserted in the Lynx display. When off,
      they will be treated as having ALT="" (i.e., they will be
      ignored). If image_links mode is toggled on, the pseudo-ALT
      strings will be restored, to serve as links to the inline
      images' sources.</p>
    </dd>

    <dt><strong><samp>]</samp></strong>
    </dt>

    <dd>
      <p>The &ldquo;<samp>]</samp>&rdquo; command is used to send
      HEAD requests for the current document or link. It applies
      only to documents or links (or form submit buttons) of http
      servers. A statusline message will notify you if the context
      for this command was inappropriate. The HEAD requests always
      are sent to the http server, i.e., Lynx does not retrieve any
      previous server replies from its cache. Note that for form
      submissions, http servers vary in whether they'll treat HEAD
      requests as valid and return the CGI script's headers, or
      treat it as invalid and return an error message.</p>
    </dd>

    <dt><strong><samp>{</samp></strong>
    </dt>

    <dd>
      <p>If the line-wrapping margin is wider than the terminal's
      display, scroll left by half of the display's width.</p>

      <p>This feature is not available when Lynx is built using the
      slang library.</p>
    </dd>

    <dt><strong><samp>|</samp></strong>
    </dt>

    <dd>
      <p>&ldquo;<samp>|</samp>&rdquo; toggles Lynx line-wrapping
      on/off. Normally Lynx fits text onto the screen, wrapping
      lines. With this feature, Lynx provides the ability to
      eliminate line-wrapping (up to an internal line-limit of 1000
      characters). Lynx uses the curses &ldquo;pad&rdquo; feature
      to support left/right scrolling. You can scroll left and
      right in the screen to view the wide lines.</p>

      <p>The popup menu for the command shows the other choices
      which extend the wrapping margin:</p>

      <blockquote>
        <pre>
/----------------------------------\
| Try to fit screen width          |
| No line wrap in columns          |
| Wrap columns at screen width     |
| Wrap columns at 3/4 screen width |
| Wrap columns at 2/3 screen width |
| Wrap columns at 1/2 screen width |
| Wrap columns at 1/3 screen width |
| Wrap columns at 1/4 screen width |
\----------------------------------/
</pre>
      </blockquote>

      <p>This feature is not available when Lynx is built using the
      slang library.</p>
    </dd>

    <dt><strong><samp>}</samp></strong>
    </dt>

    <dd>
      <p>If the line-wrapping margin is wider than the terminal's
      display, scroll right by half of the display's width.</p>

      <p>This feature is not available when Lynx is built using the
      slang library.</p>
    </dd>

    <dt><em>numbers</em>
    </dt>

    <dd>
      <p>Lynx offers other, advanced navigation features when
      numbers are used to invoke the <a href=
      "keystrokes/follow_help.html">Follow Link (or goto link or
      page) number:</a> or <a href=
      "keystrokes/follow_help.html#select-option">Select Pop-up
      Option Number:</a> prompts.</p>
    </dd>
  </dl>

  <p>[<a href="#ToC-MiscKeys">ToC</a>]</p>

  <h2 id="id-Forms"><a name="Forms" id="Forms">Lynx and HTML
  Forms</a></h2>

  <p>This section describes the Lynx Forms Interface. HTML gives
  document providers the ability to create on-line forms which may
  be filled out when the document is viewed. When a form is
  submitted the information on the form can be used to search a
  database or complete a survey.</p>

  <p>An HTML Form provides for the use of buttons to perform an
  action (such as <em>submit</em>), checkboxes, radio buttons or
  popups to select options from a list, and fields for entering
  text.</p>

  <dl>
    <dt>Buttons:</dt>

    <dd>
      <p>Buttons are displayed in the same way that Lynx displays
      links in a document. To "push" the button press the
      <em>right-arrow</em> or <em>Return</em> key. If it is a form
      submission button, you also can use the NOCACHE
      (&ldquo;<samp>x</samp>&rdquo;) or DOWNLOAD
      (&ldquo;<samp>d</samp>&rdquo;) keystroke commands to "push"
      the button (see below).</p>
    </dd>

    <dt>Checkboxes and Radio buttons</dt>

    <dd>
      <p>Checkboxes are displayed as square brackets:
      <em>[&nbsp;]</em> and radio buttons are displayed as
      parenthesis: <em>(&nbsp;)</em>. When a box is checked or a
      button selected, an <samp>x</samp> appears in the brackets:
      <em>[x]</em> or an asterisk appears within the parenthesis:
      <em>(*)</em>. To check a box or select a radio button press
      the <em>right-arrow</em> or <em>Return</em> key.</p>
    </dd>

    <dt>Selection Fields</dt>

    <dd>
      <p>Selection fields are displayed as brackets with the
      default option displayed between them: <em>[default__]</em>.
      To select an option press the <em>right-arrow</em> or
      <em>Return</em> key. A box with a border of asterisks (or
      line-drawing characters) will pop up with the list of
      possible options listed within the box. Use the
      <em>up-arrow</em>, <em>down-arrow</em>, <em>page-up</em>,
      <em>page-down</em>, and other navigation keys to move the
      cursor among options, and the <em>right-arrow</em> or
      <em>Return</em> key to select an option. You also can use the
      &ldquo;<samp>/</samp>&rdquo; and
      &ldquo;<samp>n</samp>&rdquo;ext <a href=
      "#Search">searching</a> commands for navigating to options
      which contain particular strings. <em>NOTE</em> that the
      popup menu feature can be disabled via compilation and/or
      configuration options, or via the <a href=
      "#InteractiveOptions">Options Menu</a>, in which case the
      selection field options will be converted to a list of radio
      buttons. The default setting for use of popups or radio
      button lists can be toggled via the <em>-popup</em> command
      line switch.</p>
    </dd>

    <dt>Text Entry Fields</dt>

    <dd>
      <p>Text entry (INPUT) fields are displayed as a row of
      underscores the length of the entry field: <em>_______</em>.
      You may enter text directly by typing at the keyboard. Use
      the <a href="keystrokes/edit_help.html">Line Editor</a> keys
      to correct errors. If you try to input more text than the
      field can hold, the line editor will not accept the
      additional characters. If you fill a text field the cursor
      will not move off the field but remain at the last field
      position. Use the <em>up-arrow</em>, and <em>down-arrow</em>,
      <em>TAB</em> or <em>Return</em> keys to move up, or down from
      the text entry field. NOTE, however, that <em>Return</em>
      also will <a href="#submit">submit</a> the form if the text
      entry field is the only non-hidden field in the form. If
      <a name="tna" id="tna">"Textfields Need Activation"</a> mode
      is turned on (with the <kbd>-tna</kbd> command-line option or
      in <a href="#lynx.cfg">lynx.cfg</a>), then text entry fields
      do not become active immediately upon being selected, as
      normally. Keystrokes have their normal command meaning unless
      the Line Editor gets activated with <em>Return</em> or
      <em>Right Arrow</em>. This mode can be used to avoid "getting
      stuck" in input fields, especially by users who rarely fill
      out forms.</p>

      <p><a name="CtrlVNote" id="CtrlVNote">NOTE:</a> If you have a
      text input field selected you will not have access to most of
      the Lynx keystroke commands, because they are interpreted by
      the <a href="keystrokes/edit_help.html">Line Editor</a> as
      either text entries or editing commands. Select a button or
      box when you want to use Lynx keystrokes; or prefix your
      keystroke with <em>^V</em> to temporarily escape from line
      editing.</p>

      <p>Some flavors of UNIX, shells &amp; terminal settings
      require that you enter <em>^V^Ve</em> in order to start the
      external editor, as they also use <em>^V</em> as default
      command-line quote key (called &ldquo;lnext&rdquo; in stty
      man pages and &ldquo;stty -a&rdquo; output); to avoid this,
      you can put &ldquo;stty lnext undef&rdquo; in your .cshrc
      file (or .profile or .bashrc, depending on what shell you
      use), or invoke Lynx with a wrapper script, e.g.</p>

      <p><code>&nbsp;&nbsp;#!/bin/sh<br>
      &nbsp;&nbsp;stty lnext undef<br>
      &nbsp;&nbsp;$HOME/bin/lynx "$@"<br>
      &nbsp;&nbsp;stty lnext ^V<br>
      &nbsp;&nbsp;exit</code>
      </p>

      <p>NB when NOT in the Line Editor, <em>^V</em> is by default
      bound to the command to switch between SortaSGML and TagSoup
      HTML parsing (i.e., SWITCH_DTD). To avoid confusion, either
      of these separate functions could be changed (mapped away)
      with a KEYMAP directive in <em>lynx.cfg</em>. For
      example,</p>

      <p>&nbsp;&nbsp;KEYMAP:^V:DO_NOTHING<br>
      &nbsp;&nbsp;KEYMAP:#:SWITCH_DTD</p>

      <p>would map SWITCH_DTD away from <em>^V</em> to
      <samp>#</samp>, while leaving its default Line Editor
      function as a command escape in place. On the other hand,</p>

      <p>&nbsp;&nbsp;KEYMAP:^V::NOP:1<br>
      &nbsp;&nbsp;KEYMAP:^_::LKCMD:1</p>

      <p>would move <em>^V</em>'s Line Editor binding as command
      escape to <em>^_</em> for the first Line Edit style, letting
      <em>^V</em> still act as SWITCH_DTD outside of text input
      fields.</p>
    </dd>

    <dt>TEXTAREA Fields</dt>

    <dd>
      <p>TEXTAREA fields are for most purposes handled as if they
      were a series of text entry (INPUT) fields for which
      successive lines imply a newline at the end of the preceding
      line. You enter text on each line to construct the overall
      message. Any blank lines at the bottom of the TEXTAREA field
      will be eliminated from the submission. The
      <em>up-arrow</em>, and <em>down-arrow</em> or <em>Return</em>
      keys move you to the preceding, or next line of the overall
      message, as for INPUT fields. The <em>TAB</em> key will move
      you down beyond the bottom of the TEXTAREA field, and
      <em>Back Tab</em> (if available, e.g., as Shift-Tab, and
      correctly mapped in the terminal description) will move
      backward to a link or field before the TEXTAREA.</p>
    </dd>

    <dt>Editing TEXTAREA Fields and Special TEXTAREA Functions</dt>

    <dd>
      <p>TEXTAREA fields can be edited using an external editor.
      The statusline should tell you when this is possible and what
      key to use, it might for example say</p>

      <pre>
          <strong>(Textarea) Enter text. </strong>[ ..... ]<strong> (^Xe for editor).</strong>
</pre>
      <p>An external editor has to be defined, for example in the
      <a href="#InteractiveOptions">Options Menu</a>, before you
      can start using this function.</p>

      <p>A key to invoke external TEXTAREA editing is normally
      provided by the <a href=
      "keystrokes/edit_help.html">Line-Editor Key</a> Bindings. A
      KEYMAP directive in <em>lynx.cfg</em> can also be used to
      make a different key invoke external editing; it will then
      normally be necessary to prefix that key with <em>^V</em> to
      "escape" from line-editing. Two variants exist,<br>
      &nbsp;&nbsp;KEYMAP:e:EDITTEXTAREA<br>
      or<br>
      &nbsp;&nbsp;KEYMAP:e:DWIMEDIT<br>
      (the first is only functional for TEXTAREA editing, while the
      second allows to use the same key for normal <a href=
      "#FileEdit">file editing</a> <em>as long as both functions do
      not conflict</em>).</p>

      <p>Please see the <a href="#CtrlVNote">note above</a> for
      details about <em>^V</em> behavior.</p>
      You can also use two other special TEXTAREA functions. Again,
      these are already bound to key sequences in the <a href=
      "keystrokes/edit_help.html#TASpecial">Line-Editor
      Bindings</a>, by default <em>^Xg</em> and <em>^Xi</em>. You
      can use different keys by adding KEYMAP bindings to your
      <em>lynx.cfg</em> file, e.g.
      <p>&nbsp;&nbsp;KEYMAP:$:GROWTEXTAREA<br>
      &nbsp;&nbsp;KEYMAP:#:INSERTFILE</p>

      <p>With these bindings, (in a TEXTAREA only) <em>^V$</em>
      would add 5 lines to the TEXTAREA and <em>^V#</em> would
      prompt for the name of an existing file to be inserted into
      the TEXTAREA (above the cursorline). An automatic variation
      of GROWTEXTAREA is normally compiled in, so that hitting
      <em>Enter</em> with the cursor on the last line adds a new
      line to the TEXTAREA, with the cursor on it.</p>

      <p>If you have some single keys (or control keys) to spare
      that you do not need for their normal purposes, you can
      dedicate those keys to invoke the special functions (without
      requiring a prefix key). For example, to use the <em>^E</em>
      key for the DWIMEDIT action, and the <em>Insert</em> key for
      the INSERTFILE action, use<br>
      &nbsp;&nbsp;KEYMAP:^E:DWIMEDIT:PASS<br>
      &nbsp;&nbsp;KEYMAP:0x10C:INSERTFILE:PASS<br>
      (see lynx.cfg for other keystroke codes to use).</p>

      <p>Note that the default bindings that use <em>^X</em> as a
      prefix key <em>may</em> also work by substituting the
      <kbd>Escape</kbd> key for ^X. If your keyboard has a modifier
      (Meta) key that gets transmitted as an ESC prefix, for
      example <kbd>Alt</kbd>, you can then even use <em>Alt-e</em>
      instead of <em>^Xe</em>, <em>Alt-g</em> instead of
      <em>^Xg</em>, and so on. But this does not work reliably
      everywhere (it depends on the way Lynx is compiled, including
      which libraries are used, and behavior of the connection and
      terminal type).</p>
    </dd>
  </dl>

  <p>In general, you can move around the form using the standard
  Lynx navigation keys. The <em>up-arrow</em> and
  <em>down-arrow</em> keys, respectively, select the previous or
  next field, box, or button. The <em>TAB</em> key selects the next
  field, box, or button.</p>

  <p>To <a name="submit" id="submit"><em>submit</em></a> the form
  press <em>right-arrow</em> or <em>Return</em> when positioned on
  the form's submit button. If you've submitted the form previously
  during the Lynx session, have not changed any of the form
  content, and the METHOD was <em>GET</em>, Lynx will retrieve from
  its cache what was returned from the previous submission. If you
  wish to resubmit that form to the server with the same content as
  previously, use the NOCACHE command
  (&ldquo;<samp>x</samp>&rdquo;) when positioned on the submit
  button. The <em>right-arrow</em> and <em>Return</em> keys also
  will invoke a no-cache resubmission if the reply from a form
  submission included a META element with a no-cache Pragma or
  Cache-Control directive:</p>

  <pre>
      <em>&lt;META HTTP-EQUIV="Pragma" CONTENT="no-cache"&gt;</em>
      <em>&lt;META HTTP-EQUIV="Cache-Control" CONTENT="no-cache"&gt;</em>
</pre>
  <p>or the server sent a "Pragma" or "Cache-Control" MIME header
  with a no-cache directive.</p>

  <p>You also can use the DOWNLOAD (&ldquo;<samp>d</samp>&rdquo;)
  keystroke command when positioned on a form submit button if you
  wish to download the server's reply to the submission instead of
  having Lynx render and display it.</p>

  <p>Forms which have <em>POST</em> as the METHOD, or a <a href=
  "lynx_url_support.html#mailto_url">mailto:</a> URL as the ACTION,
  are always resubmitted, even if the content has not changed, when
  you activate the <em>submit</em> button. Lynx normally will not
  resubmit a form which has <em>POST</em> as the METHOD if the
  document returned by the form has links which you activated, and
  then you go back via the PREV_DOC (<em>left-arrow</em>) command
  or via the <a href="keystrokes/history_help.html">History
  Page</a>. Lynx can be compiled so that it resubmits the form in
  those cases as well, and the default can be changed via <a href=
  "#lynx.cfg">lynx.cfg</a>, and toggled via the
  <em>-resubmit_posts</em> command line switch.</p>

  <p>If the form has one <em>text entry</em> field and no other
  fields except, possibly, hidden INPUT fields not included in the
  display, then that field also serves as a <em>submit</em> button,
  and pressing <em>right-arrow</em> or <em>Return</em> on that
  field will invoke submission of the form. Be sure to use
  <em>up-arrow</em>, <em>down-arrow</em> or <em>TAB</em> to move
  off the text entry field, in such cases, if it is not your
  intention to submit the form (or to retrieve what was returned
  from an earlier submission if the content was not changed and the
  METHOD was <em>GET</em>).</p>

  <p>Forms can have multiple <em>submit</em> buttons, if they have
  been assigned NAMEs in the markup. In such cases, information
  about which one of the buttons was used to submit the form is
  included in the form content.</p>

  <p>Inlined images can be used as submit buttons in forms: If such
  buttons are assigned NAMEs in the markup, for graphic clients
  they can also serve as <a href="#USEMAP">image maps</a>, and the
  x,y coordinates of the graphic client's cursor position in the
  image when it was <em>clicked</em> are included in the form
  content. Since Lynx cannot inline the image, and the user could
  not have moved a cursor from the origin for the image, if no
  alternatives are made available in the markup Lynx sends a 0,0
  coordinate pair in the form content.</p>

  <p>Document authors who use images as submit buttons, but have at
  least some concern for text clients and sight-challenged
  Webizens, should include VALUEs for the buttons in such markup.
  Lynx will then display the string assigned to the VALUE, as it
  would for a normal submit button.</p>

  <ul>
    <li>
      <p>Some document authors incorrectly use an ALT instead of
      VALUE attribute for this purpose. Lynx "cooperates" by
      treating ALT as a synonym for VALUE when present in an INPUT
      tag with TYPE="image".</p>
    </li>

    <li>
      <p>If neither a VALUE nor an ALT attribute is present, Lynx
      displays "[IMAGE]-Submit" as the string for such buttons.</p>
    </li>

    <li>
      <p>If clickable images is set, the "[IMAGE]" portion of the
      string is a link for the image, and the "Submit" portion is
      the button for submitting the form.</p>

      <p>Otherwise, the entire string is treated as a submit
      button. If a VALUE or ALT attribute is present and clickable
      images is set, Lynx prepends "[IMAGE]" as a link for the
      image, followed by &ldquo;-&rdquo; and then the attribute's
      value as the displayed string for the submit button.</p>
    </li>
  </ul>

  <p>Early versions of Lynx would send a name=value pair instead of
  a 0,0 coordinate pair if a TYPE="image" submit button was
  NAME-ed, had a VALUE attribute in the INPUT tag, and was used to
  submit the form. The script which analyzes the form content thus
  could be made aware whether the submission was by a user with a
  graphic client and had image loading turned on, or by a user who
  did not see the image nor make a conscious choice within it.
  However, requests that this be included in HTML specifications
  consistently have fallen on deaf ears, and thus Lynx now "fakes"
  a 0,0 coordinate pair whether or not a VALUE or ALT attribute is
  present in the INPUT tag. Ideally, the script which analyzes the
  submitted content will treat the 0,0 coordinate pair as an
  indicator that the user did not see the image and make a
  conscious choice within it.</p>

  <p>Forms can have <em>hidden</em> INPUT fields, which are not
  displayed, but have NAMEs and VALUEs included in the content.
  These often are used to keep track of information across a series
  of related form submissions, but have the potential for including
  information about the user that might be considered to represent
  an invasion of privacy. NOTE, in this regard, that Lynx has
  implemented the <a href="http://www.w3.org/Markup/html3/">HTML
  3.0</a> <em>DISABLED</em> attribute for <em>all</em> of its form
  fields. These can be used to keep track of information across
  submissions, and to cast it unmodifiable in the current form, but
  keep the user aware that it will be included in the
  submission.</p>

  <p>Forms most commonly are submitted to http servers with the
  content encoded as
  <em>ENCTYPE="application/x-www-form-urlencoded"</em> for analysis
  by a script, and Lynx treats that as the default if no ENCTYPE is
  specified in the FORM start tag. However, you can specify a
  <a href="lynx_url_support.html#mailto_url">mailto</a> URL as the
  form's ACTION to have the form content sent, instead, to an email
  address. In such cases, you may wish to specify
  <em>ENCTYPE="text/plain"</em> in the form markup, so that the
  content will not be encoded, but remain readable as plain
  text.</p>

  <p>Lynx also supports
  <em>ENCTYPE="application/sgml-form-urlencoded"</em> for which all
  reserved characters in the content will be hex escaped, as with
  <em>application/x-www-form-urlencoded</em>, but semicolons
  (&ldquo;<samp>;</samp>&rdquo;) instead of ampersands
  (&ldquo;<samp>&amp;</samp>&rdquo;) will be used as the separator
  for name=value pairs in the form content. The use of semicolons
  is preferred for forms with the <em>GET</em> METHOD, because the
  <em>GET</em> METHOD causes the encoded form content to be
  appended as a <em>?searchpart</em> for the form's ACTION, and if
  such URLs are used in <em>text/html</em> documents or bookmark
  files without conversion of the ampersands to SGML character
  references (<em>&amp;amp;</em> or <em>&amp;#38;</em>), their
  being followed by form field NAMEs which might correspond to SGML
  entities could lead to corruption of the intended URL.</p>

  <p>NOTE, in this regard, that Lynx converts ampersands to
  <em>&amp;amp;</em> when creating bookmarks, and thus the bookmark
  links will not be vulnerable to such corruptions. Also NOTE that
  Lynx allows you to save links in your bookmark file for documents
  returned by forms with the <em>GET</em> METHOD, and which thus
  have the content appended as a <em>?searchpart</em>, but not if
  the METHOD was <em>POST</em>, because the content would be lost
  and the link thus would be invalid.</p>

  <p>Lynx supports <em>ENCTYPE="multipart/form-data"</em> for
  sending form content with name=value pairs encoded as multipart
  sections with individual MIME headers and boundaries. However,
  Lynx does not yet support INPUTs with <em>TYPE="file"</em> or
  <em>TYPE="range"</em> and will set the <em>DISABLED</em>
  attribute for all of the form's fields if any INPUTs with either
  of those two TYPEs are present, so that the form cannot be
  submitted. Otherwise, Lynx will submit the form with the
  multipart ENCTYPE.</p>

  <p>A
  <em>Content-Disposition:&nbsp;file;&nbsp;filename=name.suffix</em>
  header can be used by CGI scripts to set the suggested filename
  offered by Lynx for &ldquo;<samp>d</samp>&rdquo;ownload and
  &ldquo;<samp>p</samp>&rdquo;rint menu options to save or mail the
  body returned by the script following submission of a FORM.
  Otherwise, Lynx uses the last symbolic element in the path for
  the FORM's ACTION, which is normally the script, itself, or a
  PATH_INFO field, and thus might be misleading. This also can be
  done via a META element in any document:</p>

  <pre>
      <em>&lt;META HTTP-EQUIV="Content-Disposition"
            CONTENT="file; filename=name.suffix"&gt;</em>
</pre>
  <p>[<a href="#ToC-Forms">ToC</a>]</p>

  <h2 id="id-Images"><a name="Images" id="Images">Lynx and HTML
  Images</a></h2>

  <p>As a text browser, Lynx does not display images as such -- you
  need to define a viewer in <em>lynx.cfg</em>: see there -- , but
  users can choose a number of ways of showing their presence.</p>

  <p>There are 3 choices in <em>lynx.cfg</em>, with 2 corresponding
  keys:</p>

  <pre>
     MAKE_LINKS_FOR_ALL_IMAGES        *  IMAGE_TOGGLE
     MAKE_PSEUDO_ALTS_FOR_INLINES     [  INLINE_TOGGLE
     VERBOSE_IMAGES                   no corresponding key
</pre>
  <p>You can also use the <em>Options Menu</em>, as outlined
  below:</p>

  <pre>
     key  lynx.cfg       FM KM .lynxrc    variable in source

       *  MAKE_LINKS_     Y  N       N    clickable_images
       [  MAKE_PSEUDO_    Y  N       N    pseudo_inline_alts
          VERBOSE_        Y  Y       Y    verbose_img

FM = Form-based Menu ; KM = Key-based Menu ;
in  .lynxrc ,  VERBOSE_IMAGES  is called &ldquo;verbose_images&rdquo;:
the other two cannot be saved between sessions.
</pre>
  <p>In the Form-based Menu, the 3-way &ldquo;Show images&rdquo;
  selection combines the effects of the &ldquo;*&rdquo; &amp;
  &ldquo;[&rdquo; keys, as follows:</p>

  <pre>
     Ignore      clickable_images = FALSE, pseudo_inline_alts = FALSE
     As labels   clickable_images = FALSE, pseudo_inline_alts = TRUE
     As links    clickable_images = TRUE,  pseudo_inline_alts = unchanged
</pre>
  <h2 id="id-Tables"><a name="Tables" id="Tables">Lynx and HTML
  Tables</a></h2>

  <p>HTML includes markup for creating <em>tables</em> structured
  as arrays of cells aligned by columns and rows on the displayed
  page.</p>

  <p>Lynx recognizes the TABLE element and all of its associated
  elements as described in <a href=
  "http://www.faqs.org/rfcs/rfc1942.html">RFC 1942</a> and will
  process any ID attributes in the start tags for handling as
  NAME-ed anchors, but does not create actual <em>tables</em>.
  Instead, it treats the TR start tag as a collapsible BR (line
  break), and inserts a collapsible space before the content of
  each TH and TD start tag. This generally makes all of the content
  of the <em>table</em> readable, preserves most of the intra-cell
  organization, and makes all of the links in the <em>table</em>
  accessible, but any information critically dependent on the
  column and row alignments intended for the <em>table</em> will be
  missed.</p>

  <p>If inherently tabular data must be presented with Lynx, one
  can use PRE formatted content, or, if the <em>table</em> includes
  markup not allowed for PRE content, construct the <em>table</em>
  using <a href="#Tabs">HTML Tabs</a>. An example <em>table</em>
  using <em>TAB</em> elements is included in the test subdirectory
  of the Lynx distribution.</p>

  <div id="TRST">
    <p>Starting with version 2.8.3, Lynx renders some tables in
    tabular form. This tabular representation for <em>simple</em>
    tables (<dfn>TRST</dfn>) does not attempt to implement full
    support for any table model. Limitations are:</p>

    <ul>
      <li>All data constituting a table row generally has to fit
      within the display width without inserting line breaks.</li>

      <li>Cell contents have to be simple. In general, only inline
      markup is acceptable, no <code>&lt;P&gt;</code>,
      <code>&lt;BR&gt;</code> etc. (although
      <code>&lt;BR&gt;</code> may be ignored at the beginning of
      the first cell or at the end of the last cell of a row).</li>

      <li>When tables are nested, only the innermost level is a
      candidate for tabular representation.</li>

      <li>Most attributes are ignored, including borders,
      <code>WIDTH</code>, vertical alignment.</li>
    </ul>

    <p>Horizontal alignments (<code>LEFT</code>,
    <code>CENTER</code>, <code>RIGHT</code>), <code>COLSPAN</code>,
    and <code>ROWSPAN</code> are interpreted according to HTML
    4.01. (<code>ROWSPAN</code> can only reserve empty space in
    subsequent rows, because of the limitations above.) When TRST
    fails because a table is not "simple" enough, the
    representation falls back to the minimal handling described
    earlier. Many (but, unfortunately, by no means all) tables that
    represent inherently tabular material will thus be shown with
    correct tabular formatting. Where table markup is used only for
    layout purposes (containing whole blocks of text and list
    within table cells) and not essential for understanding the
    textual contents, it remains basically ignored. Some more
    information on details is available in the file
    <kbd>README.TRST</kbd> of the source distribution.</p>
  </div>

  <p>For tabular display of more complex tables, Lynx users can
  make use of external scripts or programs. The normal Lynx
  distribution currently does not provide such scripts, but they
  can be written locally or downloaded from several sources. It is
  suggested to use one of Lynx's facilities for invoking external
  programs (see <kbd>DOWNLOADER</kbd>, <kbd>PRINTER</kbd>,
  <kbd>EXTERNAL</kbd>, <kbd>TRUSTED_LYNXCGI</kbd> in <a href=
  "#lynx.cfg">lynx.cfg</a> and <a href=
  "lynx_url_support.html#cgi_url"><code>lynxcgi:</code></a> in
  <em>Supported URLs</em> for information on various ways for
  setting this up).</p>

  <p>[<a href="#ToC-Tables">ToC</a>]</p>

  <h2 id="id-Tabs"><a name="Tabs" id="Tabs">Lynx and HTML Tabs</a></h2>

  <p>Lynx implements the <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a> TAB
  element only when LEFT alignment is in effect. If the alignment
  is CENTER or RIGHT (JUSTIFY is not yet implemented in Lynx, and
  is treated as a synonym for LEFT), or if the TAB element
  indicates a position to the left of the current position on the
  screen, it is treated as a collapsible space. For purposes of
  implementing TAB, Lynx treats <em>en</em> units as half a
  character cell width when specified by the INDENT attribute, and
  rounds up for odd values (e.g., a value of either 5 or 6 will be
  treated as three spaces, each the width of a character cell). See
  the example <em>table</em> using TAB elements in the test
  subdirectory of the Lynx distribution as a model for using this
  functionality.</p>

  <p>Note that this <em>Users Guide</em> and the <a href=
  "lynx_url_support.html">Supported URLs</a> page include TAB
  markup in a manner which <em>degrades gracefully</em> for WWW
  browsers which do not support it. Toggle to display of <a href=
  "#LocalSource">source</a> and <a href="#Search">search</a> for
  <em>&lt;tab</em> to examine the use of TAB markup in these
  documents.</p>

  <p>[<a href="#ToC-Tabs">ToC</a>]</p>

  <h2 id="id-Frames"><a name="Frames" id="Frames">Lynx and HTML
  Frames</a></h2>

  <p>Some implementations of HTML include markup, primarily
  designed for graphic clients, that is intended to create an array
  of simultaneously displayed, independently scrolling windows.
  Such windows have been termed <em>frames</em>.</p>

  <p>Lynx recognizes the Netscape and Microsoft Explorer FRAME,
  FRAMESET, and NOFRAMES elements, but is not capable of windowing
  to create the intended positioning of <em>frames</em>. Instead,
  Lynx creates labeled links to the <em>frame</em> sources,
  typically positioned in the upper left corner of the display, and
  renders the NOFRAMES section. If the document provider has
  disregard for text clients and sight-challenged Webizens, and
  thus does not include substantive content in the NOFRAMES section
  or a link in it to a document suitable for text clients, you can
  usually guess from the labeling of the <em>frame</em> links which
  one has the substantive material (if there is any), or you can
  try each of those links to see if anything worthwhile is
  returned.</p>

  <p>[<a href="#ToC-Frames">ToC</a>]</p>

  <p>Some sites -- in ignorance of Lynx capabilities -- may tell
  you (for example) "to view this page you need Netscape
  Navigator". You can simply ignore such warnings and access the
  frames via the Lynx-generated links as above.</p>

  <h2 id="id-Banners"><a name="Banners" id="Banners">Lynx and HTML
  Banners</a></h2>

  <p>Some implementations of HTML markup include provisions for
  creating a non-scrolling window to be positioned at the top of
  each page, containing links with brief, descriptive link names,
  analogous to a Windows toolbar. Such windows have been termed
  <em>banners</em>.</p>

  <p>Lynx recognizes and processes all of the <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a> REL
  attribute tokens in LINK elements for creating a <em>banner</em>,
  and a number of others which have subsequently been proposed.
  These <em>banner</em> tokens are <em>Home</em>, <em>ToC</em>,
  <em>Contents</em>, <em>Index</em>, <em>Glossary</em>,
  <em>Copyright</em>, <em>Up</em>, <em>Next</em>,
  <em>Previous</em>, <em>Prev</em>, <em>Help</em>, <em>Search</em>,
  <em>Top</em>, <em>Origin</em>, <em>Navigator</em>,
  <em>Child</em>, <em>Disclaimer</em>, <em>Sibling</em>,
  <em>Parent</em>, <em>Author</em>, <em>Editor</em>,
  <em>Publisher</em>, <em>Trademark</em>, <em>Meta</em>,
  <em>URC</em>, <em>Hotlist</em>, <em>Begin</em>, <em>First</em>,
  <em>End</em>, <em>Last</em>, <em>Pointer</em>,
  <em>Translation</em>, <em>Definition</em>, <em>Chapter</em>,
  <em>Section</em>, <em>Subsection</em>, <em>Alternate</em>,
  <em>Documentation</em>, <em>Biblioentry</em>,
  <em>Bibliography</em>, <em>Start</em>, <em>Appendix</em>,
  <em>Bookmark</em> and <em>Banner</em>. Any LINK elements with
  those tokens as the REL attribute value, and an HREF attribute
  value in the LINK, will invoke creation of a <em>banner</em> at
  the top of the first page, with the element's HREF as the link,
  and the token as the default link name. If a TITLE attribute is
  included in the LINK, its value will be used as the link name
  instead of the default. <em>Bookmark</em> and <em>Banner</em> are
  intended to be accompanied by a TITLE attribute, which in effect
  makes the namespace for REL <em>banner</em> tokens infinite.</p>

  <p>If the special token <em>Help</em> is used as the REL value
  and no HREF is included in the LINK, Lynx will use it own
  <em>HELPFILE</em> URL for that link. For the special token
  <em>Home</em> without an HREF, Lynx will use the default
  <em>STARTFILE</em> (i.e., derived from the configuration files or
  the WWW_HOME environment variable, <em>not</em> the command line
  <em>startfile</em> if one was used). However, if a
  <em>-homepage=URL</em> was specified on the command line, its URL
  will be used as the HREF. For the special token <em>Index</em>
  without an HREF, Lynx will use the <em>DEFAULT_INDEX_FILE</em>
  derived from the configuration files, or if an
  <em>-index=URL</em> was specified on the command line, its URL
  will be used as the HREF.</p>

  <p>Lynx does not waste screen real estate maintaining the
  <em>banner</em> at the top of every page, but the Lynx TOOLBAR
  keystroke command (&ldquo;<samp>#</samp>&rdquo;) will, any time
  it is pressed, position you on the <em>banner</em> so that any of
  its links can be activated, and pressing the <em>left-arrow</em>
  when in the <em>banner</em> will return you to where you were in
  the current document. The toolbar is indicated by a
  &ldquo;<samp>#</samp>&rdquo; preceding its first link when
  present on the screen, that is, when the first page of the
  document is being displayed. The availability of a toolbar is
  indicated by a &ldquo;<samp>#</samp>&rdquo; at the top, left-hand
  corner of the screen when the second or subsequent pages of the
  document are being displayed.</p>

  <p>Lynx also recognizes the <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a>
  BANNER container element, and will create a <em>banner</em> based
  on its content if one has not already been created based on LINK
  elements. Lynx treats the Microsoft MARQUEE element as a synonym
  for BANNER (i.e., presenting its markup as a static
  <em>banner</em>, without any horizontal scrolling of its
  content). Lynx does not prefix the BANNER or MARQUEE content with
  a &ldquo;<samp>#</samp>&rdquo; because the content need not be
  only a series of links with brief, descriptive links names, but
  does add a &ldquo;<samp>#</samp>&rdquo; at the top, left-hand
  corner of the screen when the content is not being displayed, to
  indicate its accessibility via the TOOLBAR keystroke command.</p>

  <p>[<a href="#ToC-Banners">ToC</a>]</p>

  <h2 id="id-Footnotes"><a name="Footnotes" id="Footnotes">Lynx and
  HTML Footnotes</a></h2>

  <p>Lynx implements the <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a> FN
  element similarly to a named <em>A</em>nchor within the current
  document, and assumes that the footnotes will be positioned at
  the bottom of the document. However, in contrast to named
  <em>A</em>nchors, the FN container element is treated as a block
  (i.e., as if a new paragraph were indicated whether or not that
  is indicated in its content) with greater than normal left and
  right margins, and the block will begin with a <em>FOOTNOTE:</em>
  label. For example, if the document contains:</p>

  <pre>
        See the <em>&lt;A HREF="#fn1"&gt;</em><a href=
"#an1">footnote</a><em>&lt;/A&gt;</em>.
</pre>
  <p>activating that link will take you to the labeled rendering
  of:</p>

  <pre>
        <em>&lt;FN ID="fn1"&gt;</em>&lt;p&gt;<a name="an1" id=
"an1">Lynx does not use popups for FN blocks.</a>&lt;/p&gt;<em>&lt;/FN&gt;</em>
</pre>
  <p>i.e., position it at the top of the page. Then, upon reading
  the footnote, you can return to your previous position in the
  document by pressing the <em>left-arrow</em> key. The content of
  an FN element can be any HTML markup that is valid in the BODY of
  the document.</p>

  <p>[<a href="#ToC-Footnotes">ToC</a>]</p>

  <h2 id="id-Notes"><a name="Notes" id="Notes">Lynx and HTML
  Notes</a></h2>

  <p>Lynx implements the <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a> NOTE
  element (<em>Admonishment</em>) as a labeled block, i.e., as if a
  new paragraph were indicated whether or not paragraphing markup
  is included in its content, with greater than normal left and
  right margins, and with the type of note indicated by an
  emphasized label based on the value of its CLASS or ROLE
  attribute. If no CLASS or ROLE attribute is included, the default
  label <em>NOTE:</em> will be used. Lynx recognizes the values
  <em>caution</em> and <em>warning</em>, for which, respectively,
  the labels <em>CAUTION:</em> or <em>WARNING:</em> will be used.
  The NOTE element can have an ID attribute, which will be treated
  as a named <em>A</em>nchor, as for <a href="#Footnotes">HTML
  Footnotes</a>, but the NOTE block need not be placed at the
  bottom of the document. The content of a NOTE block can be any
  HTML markup that is valid in the BODY of the document. This is an
  example:</p>

  <pre>
      <em>&lt;NOTE CLASS="warning" ID="too-bad"&gt;
        &lt;p&gt;The W3C vendors did not retain NOTE in the HTML 3.2 draft.&lt;/p&gt;
      &lt;/NOTE&gt;</em>
</pre>
  <p>It will <em>degrade gracefully</em> for WWW browsers which do
  not support NOTE, except for recognition of the ID attribute as a
  named <em>A</em>nchor.</p>

  <p>[<a href="#ToC-Notes">ToC</a>]</p>

  <h2 id="id-Lists"><a name="Lists" id="Lists">Lynx and HTML
  Lists</a></h2>

  <p>Lynx implements the <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a> list
  elements UL (<em>Unordered List</em>), OL (<em>Ordered
  List</em>), and DL (<em>Definition List</em>), and their
  associated attributes, and elements (LH, LI, DT, and DD) for the
  most part as described in that specification. The lists can be
  nested, yielding progressively greater indentation, up to six
  levels. The <a href=
  "http://www.w3.org/MarkUp/html-spec/html-spec_toc.html">HTML
  2.0</a> MENU and DIR elements <em>both</em> are treated as
  synonyms for UL with the PLAIN attribute (no <em>bullets</em>,
  see below). Note, thus, that neither DIR nor MENU yields a series
  of columns with 24-character spacing. A single nesting index is
  maintained, so that different types of List elements can be used
  for different levels within the nest. Also, the <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a> FIG,
  CAPTION and CREDIT elements are treated as valid within list
  blocks. They will be rendered with indentation appropriate for
  the current nesting depth, and the CAPTION or CREDIT elements
  will have a <em>CAPTION:</em> or <em>CREDIT:</em> label beginning
  the first line of their content. The content of any APPLET or
  OBJECT elements in the lists also will be indented appropriately
  for the current nesting depth, but those will not invoke line
  breaks unless indicated by their content, and it should not
  include markup which is inappropriate within the list.</p>

  <p>Lynx also supports the TYPE attribute for OL elements, which
  can have values of <em>1</em> for Arabic numbers, <em>I</em> or
  <em>i</em> for uppercase or lowercase Roman numerals, or
  <em>A</em> or <em>a</em> for uppercase or lowercase letters, that
  increment for successive LI elements in the list block. The
  CONTINUE attribute can be used to continue the ordering from the
  preceding list block when the nesting depth is changed.</p>

  <p>Lynx treats the OL attributes START and SEQNUM as synonyms for
  specifying the ordering value for the first LI element in the
  block. The values should be specified as Arabic numbers, but will
  be displayed as Arabic, Roman, or alphabetical depending on the
  TYPE for the block. The values can range from <em>-29997</em> to
  the system's maximum positive integer for Arabic numbers. For
  Roman numerals, they can range from <em>1</em> (<em>I</em> or
  <em>i</em>) to <em>3000</em> (<em>MMM</em> or <em>mmm.</em>). For
  alphabetical orders, the values can range from <em>1</em>
  (<em>A</em> or <em>a</em>) to <em>18278</em> (<em>ZZZ</em> or
  <em>zzz</em>). If the CONTINUE attribute is used, you do not need
  to specify a START or SEQNUM attribute to extend the ordering
  from a previous block, and you can include a TYPE attribute to
  change among Arabic, Roman, or alphabetical ordering styles, or
  their casing, without disrupting the sequence. If you do not
  include a START, SEQNUM or CONTINUE attribute, the first LI
  element of each OL block will default to <em>1</em>, and if you
  do not include a TYPE attribute, Lynx defaults to Arabic
  numbers.</p>

  <p>For UL blocks without the PLAIN attribute, Lynx uses
  <em>*</em>, <em>+</em>, <em>o</em>, <em>#</em>, <em>@</em> and
  <em>-</em> as <em>bullets</em> to indicate, progressively, the
  depth within the six nesting levels.</p>

  <p>Lynx treats UL, OL, DIR, and MENU blocks as having the COMPACT
  attribute by default, i.e., single spaces between LH and LI
  elements within those blocks. For DL blocks, double spacing will
  be used to separate the DT and DD elements unless the COMPACT
  attribute has been specified.</p>

  <p>[<a href="#ToC-Lists">ToC</a>]</p>

  <h2 id="id-Quotes"><a name="Quotes" id="Quotes">Lynx and HTML
  Quotes</a></h2>

  <p>The <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a> and
  later specifications provide for two classes of quotation in HTML
  documents. Block quotes, designated by the BLOCKQUOTE element (or
  its abbreviated synonym BQ in HTML 3.0), have implied paragraph
  breaks preceding and following the start and end tags for the
  block. Character level quotes, designated by the Q element, in
  contrast are simply directives in the markup to insert an
  appropriate quotation mark.</p>

  <p>Lynx renders block quotes with a greater than normal left and
  right indentation. Lynx does not support italics, and normally
  substitutes underlining, but does not underline block quotes so
  as not to obscure any explicit emphasis elements within the
  quotation. The BLOCKQUOTE or BQ block can include a CREDIT
  container element, whose content will be rendered as an implied
  new paragraph with a <em>CREDIT:</em> label at the beginning of
  its first line.</p>

  <p>Lynx respects nested Q start and end tags, and will use ASCII
  double-quotes (<samp>"</samp>) versus grave accent
  (<samp>`</samp>) and apostrophe (<samp>'</samp>), respectively,
  for even versus odd depths in the nest.</p>

  <p>Any ID attributes in BLOCKQUOTE, BQ or Q elements can be the
  target of a hyperlink in the form URL#id. It is treated just like
  the NAME in <em>A</em>nchors.</p>

  <p>[<a href="#ToC-Quotes">ToC</a>]</p>

  <h2 id="id-Eightbit"><a name="Eightbit" id="Eightbit">Lynx and
  HTML Internationalization: 8bit, UNICODE, etc.</a></h2>

  <p>Lynx has superior support for HTML 4.0/I18N
  internationalization issues. However, to see the characters other
  than 7bit properly you <em>should</em> set your <a href=
  "keystrokes/option_help.html#DC">display character set</a> from
  Option Menu and save its value, this is a Frequently Asked
  Question. Fine-turning is also available from <a href=
  "#lynx.cfg">lynx.cfg</a></p>

  <p>[<a href="#ToC-Eightbit">ToC</a>]</p>

  <h2 id="id-USEMAP"><a name="USEMAP" id="USEMAP">Lynx and
  Client-Side-Image-Maps</a></h2>

  <p>HTML includes markup, designed primarily for graphic clients,
  that treats inlined images as maps, such that areas of the image
  within which a mouse cursor was positioned when the mouse was
  <em>clicked</em> can correspond to URLs which should be
  retrieved. The original implementations were based on the client
  sending an http server the x,y coordinates associated with the
  <em>click</em>, for handling by a script invoked by the server,
  and have been termed <em>server-side-image-maps</em>. Lynx has no
  rational way of coping with such a procedure, and thus simply
  sends a 0,0 coordinate pair, which some server scripts treat as
  an instruction to return a document suitable for a text
  client.</p>

  <p>Newer HTML markup provides bases for the client to determine
  the URLs associated with areas in the image map, and/or for a
  text client to process alternative markup and allow the user to
  make choices based on textual information. These have been termed
  <em>client-side-image-maps</em>.</p>

  <p>Lynx recognizes and processes the MAP container element and
  its AREA elements, and will create a menu of links for the HREF
  of each AREA when the link created for the IMG element with a
  USEMAP attribute is activated. The menu uses the ALT attributes
  of the AREA elements as the link names, or, if the document's
  author has disregard for text clients and sight-challenged
  Webizens, and thus did not include ALT attributes, Lynx uses the
  resolved URLs pointed to by the HREF attributes as the link
  names. Lynx uses the TITLE attribute of the IMG element, or the
  TITLE attribute of the MAP, if either was present in the markup,
  as the title and main header of the menu. Otherwise, it uses the
  ALT attribute of the IMG element. If neither TITLE nor ALT
  attributes were present in the markup, Lynx creates and uses a
  <em>[USEMAP]</em> pseudo-ALT. The MAPs need not be in the same
  document as the IMG elements. If not in the same document, Lynx
  will fetch the document which contains the referenced MAP, and
  locate it based on its NAME or ID attribute. All MAPs encountered
  in documents during a Lynx session are cached, so that they need
  not be retrieved repeatedly when referenced in different
  documents.</p>

  <p>If the IMG element also indicates a
  <em>server-side-image-map</em> via an ISMAP attribute, Lynx
  normally will create a link for that as well, using an
  <em>[ISMAP]</em> pseudo-ALT (followed by a hyphen to indicate its
  association with the <em>client-side-image-map</em>) rather than
  ignoring it, and will submit a 0,0 coordinate pair if that link
  is activated. Although, the <em>client-side-image-map</em> may be
  more useful for a client such as Lynx, because all of the URLs
  associated with the image map can be accessed, and their nature
  indicated via ALT attributes, Lynx-friendly sites can map 0,0
  such that the server returns a for-text-client document
  homologous to the content of FIG elements (see below). Inclusion
  of such a link for submissions to the server can be disabled by
  default via the configuration file (<a href=
  "#lynx.cfg">lynx.cfg</a>), and the default can be toggled via the
  <em>-ismap</em> command line switch.</p>

  <p>Lynx also recognizes the <a href=
  "http://www.w3.org/MarkUp/html3/Contents.html">HTML 3.0</a> FIG
  and OVERLAY elements, and will handle them as intended for text
  clients. These are the ideal way to handle
  <em>client-side-image-maps</em>, because the FIG content provides
  complete alternative markup, rather than relying on the client to
  construct a relatively meager list of links with link names based
  on ALT strings.</p>

  <p>The presently experimental OBJECT element encompasses much of
  the functionality of the FIG element for
  <em>client-side-image-maps</em>. Lynx will render and display the
  content of OBJECT elements which have the SHAPES attribute
  equivalently to its handling of FIG. Lynx also handles OBJECT
  elements with the USEMAP and/or ISMAP attributes equivalently to
  its handling of IMG elements with <em>client-side-image-maps</em>
  and/or <em>server-side-image-maps</em>.</p>

  <p>[<a href="#ToC-USEMAP">ToC</a>]</p>

  <h2 id="id-Refresh"><a name="Refresh" id="Refresh">Lynx and
  Client-Side-Pull</a></h2>

  <p>HTML includes provision for passing instructions to clients
  via directives in META elements, and one such instruction, via
  the token <em>Refresh</em>, should invoke reloading of the
  document, fetched from a server with the same URL or a new URL,
  at a specified number of seconds following receipt of the current
  document. This procedure has been termed
  <em>client-side-pull</em>. An example of such an element is:</p>

  <pre>
      <em>&lt;META HTTP-EQUIV="Refresh" CONTENT="3; URL=http://host/path"&gt;</em>
</pre>
  <p>which instructs a client to fetch the indicated URL in 3
  seconds after receiving the current document. If the
  <em>URL=</em> field is omitted, the URL defaults to that of the
  current document. A <em>no-cache</em> directive is implied when
  the <em>Refresh</em> if for the same URL.</p>

  <p>Lynx recognizes and processes <em>Refresh</em> directives in
  META elements, but puts up a labeled link, typically in the upper
  left corner of the display, indicating the number of seconds
  intended before a refresh, and the URL for the refresh, instead
  of making the request automatically after the indicated number of
  seconds. This allows people using a braille interface any amount
  of time to examine the current document before activating the
  link for the next URL. In general, if the number of seconds
  indicated is short, the timing is not critical and you can
  activate the link whenever you like. If it is long (e.g., 60
  seconds), a server process may be generating new documents or
  images at that interval, and you would be wasting bandwidth by
  activating the link at a shorter interval.</p>

  <p>[<a href="#ToC-Refresh">ToC</a>]</p>

  <h2 id="id-Cookies"><a name="Cookies" id="Cookies">Lynx State
  Management</a> (Me want <em>cookie</em>!)</h2>

  <p>HTTP provides a means to carry state information across
  successive connections between a browser and an http server.
  Normally, http servers respond to each browser request without
  relating that request to previous or subsequent requests. Though
  the inclusion of INPUT fields with TYPE="hidden" can be used as a
  sort of state management by <a href="#Forms">HTML Forms</a>, a
  more general approach involves exchanges of MIME headers between
  the server and browser. When replying to a request, the server
  can send a <em>Set-Cookie</em> MIME header which contains
  information (<em>cookies</em>) relevant to the browser's request,
  and in subsequent requests the browser can send a <em>Cookie</em>
  MIME header with information derived from previously received
  cookies.</p>

  <p>State Management via cookie exchanges originally was
  implemented by Netscape, and such cookies are now designated as
  <em>Version 0</em>. A more elaborate format for cookies,
  designated as <em>Version 1</em>, was standardized by the IETF
  (Internet Engineering Task Force) as <a href=
  "https://www.ietf.org/rfc/rfc2109.txt">RFC&nbsp;2109</a>. Lynx
  supports both <em>Version 0</em> and <em>Version 1</em> cookie
  exchanges. This support can be disabled by default via the
  SET_COOKIES symbol in the compilation (<em>userdefs.h</em>)
  and/or run time (<a href="#lynx.cfg">lynx.cfg</a>) configuration
  files, and that default setting can be toggled via the
  <em>-cookies</em> command line switch. The SET_COOKIES symbol can
  be further modified by the ACCEPT_ALL_COOKIES mode. If
  ACCEPT_ALL_COOKIES is set TRUE, and SET_COOKIES is TRUE, Lynx
  will accept all cookies. Additionally, the cookies that are
  automatically accepted or rejected by Lynx can be further
  modified with the COOKIE_ACCEPT_DOMAINS and COOKIE_REJECT_DOMAINS
  options in your .lynxrc file, each of which is a comma-separated
  list of domains to perform the desired action. The domain listed
  in these options must be identical to the domain the cookie comes
  from, there is no wildcard matching. If a domain is specific in
  both COOKIE_ACCEPT_DOMAINS and COOKIE_REJECT_DOMAINS, rejection
  will take precedence.</p>

  <p>When cookie support is enabled, <em>Set-Cookie</em> MIME
  headers received from an http server invoke confirmation prompts
  with possible replies of &ldquo;<samp>Y</samp>&rdquo;es or
  &ldquo;<samp>N</samp>&rdquo;o for acceptance of the cookie,
  &ldquo;<samp>A</samp>&rdquo;lways to accept the cookie and to
  allow all subsequent cookies from that <em>domain</em> (server's
  Fully Qualified Domain Name, or site-identifying portion of the
  FQDN) without further confirmation prompts, or
  ne&ldquo;<strong>V</strong>&rdquo;er to never allow cookies from
  that <em>domain</em> to be accepted (silently ignore its
  <em>Set-Cookie</em> MIME headers). All unexpired cookies are held
  in a hypothetical <em>Cookie Jar</em> which can be examined via
  the COOKIE_JAR keystroke command, normally mapped to
  <em>Ctrl-K</em>, for invoking the <a href=
  "keystrokes/cookie_help.html">Cookie Jar Page</a>. If Lynx has
  been compiled with the --enable-persistent-cookies flag, then
  unexpired cookies will be stored between sessions in the filename
  set with the COOKIE_FILE option in your .lynxrc.</p>

  <p>A common use of cookies by http servers is simply to track the
  documents visited by individual users. Though this can be useful
  to the site's WebMaster for evaluating and improving the
  organization of links in the various documents of the site, if
  the user has configured Lynx to include a <em>From</em> MIME
  header with the user's email address in http requests, or has
  passed personal information to the server via a form submission,
  the tracking might be used to draw inferences, possibly
  incorrect, about that user, and may be considered by some as an
  invasion of privacy.</p>

  <p>An example of worthwhile State Management via cookies is the
  setting of personal preferences, typically via a form submission
  to the site, which will then apply to all documents visited at
  that site.</p>

  <p>If you accept cookies when accessing a site, but are given no
  indication about how they will be used in subsequent requests to
  that site, nor can infer how they will be used, you can
  <em>Gobble</em> (delete) the cookies and/or change the
  &ldquo;allow&rdquo; setting for its <em>domain</em> via the
  <a href="keystrokes/cookie_help.html">Cookie Jar Page</a>.</p>

  <p>[<a href="#ToC-Cookies">ToC</a>]</p>

  <h2 id="id-Cache"><a name="Cache" id="Cache">Cached Documents</a></h2>

  <p>A list of documents which are in lynx's internal cache is
  accessible through hypothetical <em>Cache Jar</em> which can be
  examined via the CACHE_JAR keystroke command, normally mapped to
  <em>Ctrl-X</em>.</p>

  <p>Entries in the <em>Cache Jar</em> are ordered from oldest (at
  the top) to newest. The user can easily access any document which
  is in the cache, especially those which may be soon removed due
  to configurable limits on the maximum number of cached documents,
  as well as the maximum amount of memory used by the cache.</p>

  <p>The structure of <em>Cache Jar</em> is simple:</p>

  <ul>
    <li>Each entry starts with its ordinal number (within the
    session), recently added documents in cache have a smaller
    number than documents which are added before, and are
    positioned at the end of <em>Cache Jar</em></li>

    <li>Following its ordinal number is the document title, which
    is also a link. On activating this link, the user is prompted
    if they want to delete the document from <em>Cache Jar</em>.
    The document's address (also a link) follows the title. It is
    distinguished by a <code>URL:</code> label preceding the link.
    Activating this link, lynx displays the corresponding cached
    document.</li>

    <li>Below each cached document URL lynx shows the document
    properties which include:
      <ul>
        <li>Lines,</li>

        <li>Size,</li>

        <li>File-Cache,</li>

        <li>Content-Type,</li>

        <li>Content-Language,</li>

        <li>Content-Encoding,</li>

        <li>Content-Location,</li>

        <li>Subject,</li>

        <li>Owner,</li>

        <li>Date,</li>

        <li>Expires,</li>

        <li>Last-Modified,</li>

        <li>ETag,</li>

        <li>Server, and</li>

        <li>Source-Cache-File.</li>
      </ul>
    </li>
  </ul>

  <p>This feature can be enabled by default using the USE_CACHEJAR
  symbol in the compilation (<code>userdefs.h</code>), as well as
  enabled in lynx.cfg</p>

  <p>[<a href="#ToC-Cache">ToC</a>]</p>

  <h2 id="id-Sessions"><a name="Sessions" id=
  "Sessions"><em>Sessions</em></a></h2>

  <p>Lynx's current state (all information about the user's current
  activity with lynx) is called a session. Sessions are useful in
  particular if you are in the middle of exploring something on the
  web and you were forced to stop abruptly, losing any trace of
  your current work.</p>

  <p>A session can be automatically restored as lynx starts after a
  clean exit. The session data is saved if lynx is invoked with the
  <em>-session=FILENAME</em> switch. The <em>FILENAME</em> is the
  name of the file where the session will be stored.</p>

  <p>There are also switches for only restoring:
  <em>-sessionin=FILENAME</em> and for only saving:
  <em>-sessionout=FILENAME</em> sessions:</p>

  <p>If you do not want to specify these options at each lynx
  startup, there is an option in <em>lynx.cfg</em> to enable
  automatic saving/restoring of session. To keep lynx startup/exit
  reasonable fast there is also an option in <em>lynx.cfg</em>
  specifying how much information about the current lynx session
  will be stored in file.</p>

  <p>The syntax of the session file is simple. You can use a text
  editor to modify, add new entries, or remove URLs you no longer
  want.</p>

  <p>[<a href="#ToC-Sessions">ToC</a>]</p>

  <h2 id="id-Invoking"><a name="Invoking" id="Invoking">The Lynx
  command line</a></h2>

  <p>A summary of the Lynx command line options (switches) is
  returned to stdout if Lynx is invoked with the <em>-help</em>
  switch. A description of the options also should be available via
  the system man (Unix) pages or help (VMS) libraries. On Win32,
  typing lynx -help in a DOS window should display similarly. The
  basic syntax of the Lynx command line can be represented as one
  of the following:</p>

  <dl>
    <dt><code>Command</code>
    </dt>

    <dd><code>lynx [options]</code>
    </dd>

    <dd><code>lynx [options] startfile</code>
    </dd>
  </dl>

  <p>where</p>

  <dl>
    <dt><code>startfile</code>
    </dt>

    <dd>
      <p>is the file or URL that Lynx will load at start-up.</p>

      <ul>
        <li>If startfile is not specified, Lynx will use a default
        starting file and base directory determined during
        installation.</li>

        <li>If a specified file is local (i.e., not a URL) Lynx
        displays that file and uses the directory in which that
        file resides as the base directory.</li>

        <li>If a URL is specified, the file will be retrieved, and
        only the server base directory will be relevant to further
        accesses.</li>

        <li>If more than one local file or remote URL is listed on
        the command line, Lynx will open only the last
        interactively. All of the names (local files and remote
        URLs) are added to the G)oto history.</li>
      </ul>
    </dd>

    <dt><code>options</code>
    </dt>

    <dd>
      <p>Lynx uses only long option names. Option names can begin
      with double dash as well, underscores and dashes can be
      intermixed in option names (in the reference below options
      are with one dash before them and with underscores).</p>

      <p>Lynx provides many command-line options. Some options
      require a value (string, number or keyword). These are noted
      in the reference below. The other options set boolean values
      in the program. There are three types of boolean options:
      set, unset and toggle. If no option value is given, these
      have the obvious meaning: set (to true), unset (to false), or
      toggle (between true/false). For any of these, an explicit
      value can be given in different forms to allow for operating
      system constraints, e.g.,</p>

      <blockquote>
        <pre>
-center:off
-center=off
-center-
</pre>
      </blockquote>

      <p>Lynx recognizes "1", "+", "on" and "true" for true values,
      and "0", "-", "off" and "false" for false values. Other
      option-values are ignored.</p>

      <p>The default boolean, number and string option values that
      are compiled into lynx are displayed in the help-message
      provided by lynx -help. Some of those may differ according to
      how lynx was built; see the help message itself for these
      values. The -help option is processed before any option,
      including those that control reading from the lynx.cfg file.
      Therefore runtime configuration values are not reflected in
      the help-message.</p>

      <p>Capitalized items in the option summary indicate that a
      substitution must be made. These are the options:</p>

      <dl>
        <dt><code><strong>-</strong></code>
        </dt>

        <dd>
          <p>If the argument is only
          &ldquo;<code><strong>-</strong></code>&rdquo; (dash),
          then Lynx expects to receive the arguments from stdin.
          This is to allow for the potentially very long command
          line that can be associated with the <em>-get_data</em>
          or <em>-post_data</em> arguments (see below). It can also
          be used to avoid having sensitive information in the
          invoking command line (which would be visible to other
          processes on most systems), especially when the
          <em>-auth</em> or <em>-pauth</em> options are used. On
          VMS, the dash must be encased in double-quotes ("-") and
          the keyboard input terminated with <em>Control-Z</em> or
          the command file input terminated by a line that begins
          with &ldquo;<samp>$</samp>&rdquo;. On Unix, the keyboard
          input terminator is <em>Control-D</em>. On Win32,
          [???].</p>
        </dd>

        <dt><code><strong>-accept_all_cookies</strong></code>
        </dt>

        <dd>
          <p>accept all cookies.</p>
        </dd>

        <dt><code><strong>-anonymous</strong></code>
        </dt>

        <dd>
          <p>apply restrictions appropriate for an anonymous
          account, see <em>-restrictions</em> below for some
          details.</p>
        </dd>

        <dt>
        <code><strong>-assume_charset=</strong><em>MIMENAME</em></code>
        </dt>

        <dd>
          <p>charset for documents that do not specify it.</p>
        </dd>

        <dt>
        <code><strong>-assume_local_charset=</strong><em>MIMENAME</em></code>
        </dt>

        <dd>
          <p>charset assumed for local files, i.e., files which
          lynx creates such as internal pages for the options
          menu.</p>
        </dd>

        <dt>
        <code><strong>-assume_unrec_charset=</strong><em>MIMENAME</em></code>
        </dt>

        <dd>
          <p>use this instead of unrecognized charsets.</p>
        </dd>

        <dt><code><strong>-auth=</strong><em>ID:PW</em></code>
        </dt>

        <dd>
          <p>set authorization <em>identifier</em> and
          <em>password</em> for protected documents at startup. Be
          sure to protect any script files which use this
          switch.</p>
        </dd>

        <dt><code><strong>-base</strong></code>
        </dt>

        <dd>
          <p>prepend a request URL comment and BASE tag to
          text/html outputs for -source dumps.</p>
        </dd>

        <dt><code><strong>-bibp=</strong><em>URL</em></code>
        </dt>

        <dd>
          <p>specify a local bibp server (default
          http://bibhost/).</p>
        </dd>

        <dt><code><strong>-blink</strong></code>
        </dt>

        <dd>
          <p>forces high intensity background colors for color
          mode, if available and supported by the terminal. This
          applies to the slang library (for a few terminal
          emulators), or to OS/2 EMX with ncurses.</p>
        </dd>

        <dt><code><strong>-book</strong></code>
        </dt>

        <dd>
          <p>use the bookmark page as the startfile. The default or
          command line startfile is still set for the Main screen
          command, and will be used if the bookmark page is
          unavailable or blank.</p>
        </dd>

        <dt><code><strong>-buried_news</strong></code>
        </dt>

        <dd>
          <p>toggles scanning of news articles for buried
          references, and converts them to news links. Not
          recommended because email addresses enclosed in angle
          brackets will be converted to false news links, and
          uuencoded messages can be trashed.</p>
        </dd>

        <dt><code><strong>-cache=</strong><em>NUMBER</em></code>
        </dt>

        <dd>
          <p>set the <em>NUMBER</em> of documents cached in memory.
          The default is 10.</p>
        </dd>

        <dt><code><strong>-center</strong></code>
        </dt>

        <dd>
          <p>Toggle center alignment in HTML TABLE.</p>
        </dd>

        <dt><code><strong>-case</strong></code>
        </dt>

        <dd>
          <p>enable case-sensitive string searching.</p>
        </dd>

        <dt><code><strong>-cfg=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>specifies a Lynx configuration file other than the
          default <a href="#lynx.cfg">lynx.cfg</a>.</p>
        </dd>

        <dt><code><strong>-child</strong></code>
        </dt>

        <dd>
          <p>exit on left-arrow in startfile, and disable save to
          disk.</p>
        </dd>

        <dt><code><strong>-child_relaxed</strong></code>
        </dt>

        <dd>
          <p>exit on left-arrow in startfile, but allow save to
          disk and associated print/mail options.</p>
        </dd>

        <dt>
        <code><strong>-cmd_log=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>write keystroke commands and related information to
          the specified file.</p>
        </dd>

        <dt>
        <code><strong>-cmd_script=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>read keystroke commands from the specified file. You
          can use the data written using the <em>-cmd_log</em>
          option. Lynx will ignore other information which the
          command-logging may have written to the log- file. Each
          line of the command script contains either a comment
          beginning with "#", or a keyword:</p>

          <dl>
            <dt><code><strong>exit</strong></code>
            </dt>

            <dd>
              <p>causes the script to stop, and forces lynx to exit
              immediately.</p>
            </dd>

            <dt><code><strong>key</strong></code>
            </dt>

            <dd>
              <p>the character value, in printable form. Cursor and
              other special keys are given as names, e.g.,
              <code><strong>Down Arrow</strong></code>. Printable
              7-bit ASCII codes are given as-is, and hexadecimal
              values represent other 8-bit codes.</p>
            </dd>

            <dt><code><strong>set</strong></code>
            </dt>

            <dd>
              <p>followed by a "name=value" allows one to override
              values set in the lynx.cfg file.</p>
            </dd>
          </dl>
        </dd>

        <dt><code><strong>-color</strong></code>
        </dt>

        <dd>
          <p>forces color mode on. This feature is only available
          if Lynx is built using the slang library. The slang
          library will send ANSI color sequences without regard to
          the type of terminal which is being used.</p>

          <p>If color support is instead provided by a
          color-capable curses library such as ncurses, Lynx relies
          completely on the terminal description to determine
          whether color mode is possible, and this flag is not
          needed and thus unavailable.</p>

          <p>A saved <samp>show_color=always</samp> setting found
          in a .lynxrc file at startup has the same effect, but the
          setting read from .lynxrc on startup is overridden by
          this flag.</p>
        </dd>

        <dt>
        <code><strong>-connect_timeout</strong>=<em>N</em></code>
        </dt>

        <dd>
          <p>Sets the connection timeout, where <em>N</em> is given
          in seconds.</p>
        </dd>

        <dt>
        <code><strong>-cookie_file=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>specifies a file to use to read cookies. If none is
          specified, the default value is ~/.lynx_cookies for most
          systems, but ~/cookies for MS-DOS.</p>
        </dd>

        <dt>
        <code><strong>-cookie_save_file=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>specifies a file to use to store cookies. If none is
          specified, the value given by
          <code><strong>-cookie_file</strong></code> is used.</p>
        </dd>

        <dt><code><strong>-cookies</strong></code>
        </dt>

        <dd>
          <p>toggles handling of Set-Cookie headers.</p>
        </dd>

        <dt><code><strong>-core</strong></code>
        </dt>

        <dd>
          <p>toggles forced core dumps on fatal errors. (Unix
          only)</p>
        </dd>

        <dt><code><strong>-crawl</strong></code>
        </dt>

        <dd>
          <p>with <em>-traversal</em>, output each page to a
          file.</p>

          <p>with <em>-dump</em>, format output as with
          <em>-traversal</em>, but to stdout.</p>
        </dd>

        <dt><code><strong>-curses_pads</strong></code>
        </dt>

        <dd>
          <p>toggles the use of curses "pad" feature which supports
          left/right scrolling of the display.</p>
        </dd>

        <dt><code><strong>-debug_partial</strong></code>
        </dt>

        <dd>
          <p>separate incremental display stages with MessageSecs
          delay</p>
        </dd>

        <dt><code><strong>-display=</strong><em>DISPLAY</em></code>
        </dt>

        <dd>
          <p>set the display variable for X rexe-ced programs.</p>
        </dd>

        <dt>
        <code><strong>-display_charset=</strong><em>MIMEname</em></code>
        </dt>

        <dd>
          <p>set the charset for the terminal output.</p>
        </dd>

        <dt><code><strong>-dont_wrap_pre</strong></code>
        </dt>

        <dd>
          <p>inhibit wrapping of text in &lt;pre&gt; when -dump'ing
          and -crawl'ing, mark wrapped lines in interactive
          session.</p>
        </dd>

        <dt><code><strong>-dump</strong></code>
        </dt>

        <dd>
          <p>dumps the formatted output of the default document or
          one specified on the command line to standard out. This
          can be used in the following way:</p>

          <blockquote>
            <p><em>lynx -dump http://www.w3.org/</em>
            </p>
          </blockquote>
        </dd>

        <dt><code><strong>-editor=</strong><em>EDITOR</em></code>
        </dt>

        <dd>
          <p>enable external editing using the specified
          <em>EDITOR</em>. (vi, ed, emacs, etc.)</p>
        </dd>

        <dt><code><strong>-emacskeys</strong></code>
        </dt>

        <dd>
          <p>enable emacs-like key movement.</p>
        </dd>

        <dt><code><strong>-enable_scrollback</strong></code>
        </dt>

        <dd>
          <p>toggles behavior compatible with the scrollback keys
          in some communications software (may be incompatible with
          some curses packages).</p>
        </dd>

        <dt>
        <code><strong>-error_file=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>the status code from the HTTP request is placed in
          this file.</p>
        </dd>

        <dt><code><strong>-exec</strong></code>
        </dt>

        <dd>
          <p>enable local program execution (normally not
          configured).</p>
        </dd>

        <dt><code><strong>-fileversions</strong></code>
        </dt>

        <dd>
          <p>include all versions of files in local VMS directory
          listings.</p>
        </dd>

        <dt><code><strong>-find_leaks</strong></code>
        </dt>

        <dd>
          <p>toggles the memory leak checking off. Normally this is
          not compiled-into your executable, but when it is, it can
          be disabled for a session.</p>
        </dd>

        <dt><code><strong>-force_empty_hrefless_a</strong></code>
        </dt>

        <dd>
          <p>force HREF-less &ldquo;A&rdquo; elements to be empty
          (close them as soon as they are seen).</p>
        </dd>

        <dt><code><strong>-force_html</strong></code>
        </dt>

        <dd>
          <p>forces the first document to be interpreted as
          HTML.</p>
        </dd>

        <dt><code><strong>-force_secure</strong></code>
        </dt>

        <dd>
          <p>toggles forcing of the secure flag for SSL
          cookies.</p>
        </dd>

        <dt><code><strong>-forms_options</strong></code>
        </dt>

        <dd>
          <p>toggles whether the Options Menu is key-based or
          form-based.</p>
        </dd>

        <dt><code><strong>-from</strong></code>
        </dt>

        <dd>
          <p>toggles transmissions of From headers to HTTP or HTTPS
          servers.</p>
        </dd>

        <dt><code><strong>-ftp</strong></code>
        </dt>

        <dd>
          <p>disable ftp access.</p>
        </dd>

        <dt><code><strong>-get_data</strong></code>
        </dt>

        <dd>
          <p>properly formatted data for a get form are read in
          from stdin and passed to the form. Input is terminated by
          a line that starts with &ldquo;---&rdquo;.</p>
        </dd>

        <dt><code><strong>-head</strong></code>
        </dt>

        <dd>
          <p>send a HEAD request for the mime headers.</p>
        </dd>

        <dt><code><strong>-help</strong></code>
        </dt>

        <dd>
          <p>print this Lynx command syntax usage message.</p>
        </dd>

        <dt>
        <code><strong>-hiddenlinks=</strong><em>option</em></code>
        </dt>

        <dd>
          <p>control the display of hidden links. Option values
          are:</p>

          <dl>
            <dt><code><strong>merge</strong></code>
            </dt>

            <dd>
              <p>hidden links show up as bracketed numbers and are
              numbered together with other links in the sequence of
              their occurrence in the document.</p>
            </dd>

            <dt><code><strong>listonly</strong></code>
            </dt>

            <dd>
              <p>hidden links are shown only on <em>L</em>ist
              screens and listings generated by
              <code><strong>-dump</strong></code> or from the
              <em>P</em>rint menu, but appear separately at the end
              of those lists. This is the default behavior.</p>
            </dd>

            <dt><code><strong>ignore</strong></code>
            </dt>

            <dd>
              <p>hidden links do not appear even in listings.</p>
            </dd>
          </dl>
        </dd>

        <dt><code><strong>-historical</strong></code>
        </dt>

        <dd>
          <p>toggles use of &ldquo;&gt;&rdquo; or
          &ldquo;--&gt;&rdquo; as a terminator for comments.</p>
        </dd>

        <dt><code><strong>-homepage=</strong><em>URL</em></code>
        </dt>

        <dd>
          <p>set homepage separate from start page. Will be used if
          a fetch of the start page fails or if it is a script
          which does not return a document, and as the
          <code><em>URL</em></code> for the
          &ldquo;<samp>m</samp>&rdquo;ain menu command.</p>
        </dd>

        <dt><code><strong>-image_links</strong></code>
        </dt>

        <dd>
          <p>toggles inclusion of links for all images.</p>
        </dd>

        <dt><code><strong>-ismap</strong></code>
        </dt>

        <dd>
          <p>toggles inclusion of ISMAP links when client-side MAPs
          are present.</p>
        </dd>

        <dt><code><strong>-index=</strong><em>URL</em></code>
        </dt>

        <dd>
          <p>set the default index file to the specified
          <em>URL</em></p>
        </dd>

        <dt><code><strong>-justify</strong></code>
        </dt>

        <dd>
          <p>do justification of text.</p>
        </dd>

        <dt><code><strong>-link=</strong><em>NUMBER</em></code>
        </dt>

        <dd>
          <p>starting count for lnk#.dat files produced by
          <em>-crawl</em>.</p>
        </dd>

        <dt><code><strong>-localhost</strong></code>
        </dt>

        <dd>
          <p>disable URLs that point to remote hosts.</p>
        </dd>

        <dt><code><strong>-locexec</strong></code>
        </dt>

        <dd>
          <p>enable local program execution from local files only
          (if lynx was compiled with local execution enabled).</p>
        </dd>

        <dt><code><strong>-lss=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>specify filename containing color-style information.
          The default is lynx.lss.</p>
        </dd>

        <dt><code><strong>-mime_header</strong></code>
        </dt>

        <dd>
          <p>include mime headers and force source dump.</p>
        </dd>

        <dt><code><strong>-minimal</strong></code>
        </dt>

        <dd>
          <p>toggles minimal versus valid comment parsing. When
          minimal, any &ldquo;--&gt;&rdquo; serves as a terminator
          for a comment element. When valid, pairs of
          &ldquo;--&rdquo; are treated as delimiters for series of
          comments within the overall comment element. If
          historical is set, that overrides minimal or valid
          comment parsing.</p>
        </dd>

        <dt><code><strong>-nested_tables</strong></code>
        </dt>

        <dd>
          <p>toggles nested-tables logic (for debugging).</p>
        </dd>

        <dt>
        <code><strong>-newschunksize=</strong><em>NUMBER</em></code>
        </dt>

        <dd>
          <p>number of articles in chunked news listings.</p>
        </dd>

        <dt>
        <code><strong>-newsmaxchunk=</strong><em>NUMBER</em></code>
        </dt>

        <dd>
          <p>maximum news articles in listings before chunking.</p>
        </dd>

        <dt><code><strong>-nobold</strong></code>
        </dt>

        <dd>
          <p>disable bold video-attribute.</p>
        </dd>

        <dt><code><strong>-nobrowse</strong></code>
        </dt>

        <dd>
          <p>disable directory browsing.</p>
        </dd>

        <dt><code><strong>-nocc</strong></code>
        </dt>

        <dd>
          <p>disable Cc: prompts for self copies of mailings. Note
          that this does not disable any CCs which are incorporated
          within a mailto URL or form ACTION.</p>
        </dd>

        <dt><code><strong>-nocolor</strong></code>
        </dt>

        <dd>
          <p>force color mode off, overriding terminal capabilities
          and any <em>-color</em> flags, <em>COLORTERM</em>
          variable, and saved .lynxrc settings.</p>
        </dd>

        <dt><code><strong>-noexec</strong></code>
        </dt>

        <dd>
          <p>disable local program execution. (DEFAULT)</p>
        </dd>

        <dt><code><strong>-nofilereferer</strong></code>
        </dt>

        <dd>
          <p>disable transmissions of Referer headers for file
          URLs.</p>
        </dd>

        <dt><code><strong>-nolist</strong></code>
        </dt>

        <dd>
          <p>disable the link list feature in dumps.</p>
        </dd>

        <dt><code><strong>-nolog</strong></code>
        </dt>

        <dd>
          <p>disable mailing of error messages to document
          owners.</p>
        </dd>

        <dt><code><strong>-nomargins</strong></code>
        </dt>

        <dd>
          <p>disable left/right margins in the default style
          sheet.</p>
        </dd>

        <dt><code><strong>-nomore</strong></code>
        </dt>

        <dd>
          <p>disable -more- string in statusline messages.</p>
        </dd>

        <dt><code><strong>-nonrestarting_sigwinch</strong></code>
        </dt>

        <dd>
          <p>make window size change handler non-restarting. This
          flag is not available on all systems, Lynx needs to be
          compiled with HAVE_SIGACTION defined. If available, this
          flag <em>may</em> cause Lynx to react more immediately to
          window changes when run within an xterm.</p>
        </dd>

        <dt><code><strong>-nopause</strong></code>
        </dt>

        <dd>
          <p>disable forced pauses for statusline messages.</p>
        </dd>

        <dt><code><strong>-noprint</strong></code>
        </dt>

        <dd>
          <p>disable most print functions.</p>
        </dd>

        <dt><code><strong>-noredir</strong></code>
        </dt>

        <dd>
          <p>do not follow URL redirections</p>
        </dd>

        <dt><code><strong>-noreferer</strong></code>
        </dt>

        <dd>
          <p>disable transmissions of Referer headers.</p>
        </dd>

        <dt><code><strong>-noreverse</strong></code>
        </dt>

        <dd>
          <p>disable reverse video-attribute.</p>
        </dd>

        <dt><code><strong>-nosocks</strong></code>
        </dt>

        <dd>
          <p>disable SOCKS proxy usage by a SOCKSified Lynx.</p>
        </dd>

        <dt><code><strong>-nostatus</strong></code>
        </dt>

        <dd>
          <p>disable the retrieval status messages.</p>
        </dd>

        <dt><code><strong>-notitle</strong></code>
        </dt>

        <dd>
          <p>disable title and blank line from top of page.</p>
        </dd>

        <dt><code><strong>-nounderline</strong></code>
        </dt>

        <dd>
          <p>disable underline video-attribute.</p>
        </dd>

        <dt><code><strong>-number_fields</strong></code>
        </dt>

        <dd>
          <p>force numbering of links as well as form input
          fields.</p>
        </dd>

        <dt><code><strong>-number_links</strong></code>
        </dt>

        <dd>
          <p>force numbering of links.</p>
        </dd>

        <dt><code><strong>-partial</strong></code>
        </dt>

        <dd>
          <p>toggles displaying of partial pages while loading.</p>
        </dd>

        <dt>
        <code><strong>-partial_thres=</strong><em>NUMBER</em></code>
        </dt>

        <dd>
          <p>number of lines to render before repainting display
          with partial-display logic.</p>
        </dd>

        <dt><code><strong>-pauth=</strong><em>ID:PW</em></code>
        </dt>

        <dd>
          <p>set authorization <em>identifier</em> and
          <em>password</em> for a protected proxy server at
          startup. Be sure to protect any script files which use
          this switch.</p>
        </dd>

        <dt><code><strong>-popup</strong></code>
        </dt>

        <dd>
          <p>toggles handling of single-choice SELECT options via
          popup windows or as lists of radio buttons. The default
          configuration can be changed in userdefs.h or <a href=
          "#lynx.cfg">lynx.cfg</a>. It also can be set and saved
          via the &ldquo;o&rdquo;ptions menu. The command line
          switch toggles the default.</p>
        </dd>

        <dt><code><strong>-post_data</strong></code>
        </dt>

        <dd>
          <p>properly formatted data for a post form are read in
          from stdin and passed to the form. Input is terminated by
          a line that starts with &ldquo;---&rdquo;.</p>
        </dd>

        <dt><code><strong>-preparsed</strong></code>
        </dt>

        <dd>
          <p>show source preparsed and reformatted when used with
          -source or in source view (&ldquo;<samp>\</samp>&rdquo;).
          May be useful for debugging of broken HTML markup to
          visualize the difference between SortaSGML and TagSoup
          <a href="keystrokes/option_help.html#tagsoup">recovery
          modes</a>, switched by &ldquo;<samp>^V</samp>&rdquo;.</p>
        </dd>

        <dt><code><strong>-prettysrc</strong></code>
        </dt>

        <dd>
          <p>do syntax highlighting and hyperlink handling in
          source view.</p>
        </dd>

        <dt><code><strong>-print</strong></code>
        </dt>

        <dd>
          <p>enable print functions. (default)</p>
        </dd>

        <dt><code><strong>-pseudo_inlines</strong></code>
        </dt>

        <dd>
          <p>toggles pseudo-ALTs for inline images with no ALT
          string.</p>
        </dd>

        <dt><code><strong>-raw</strong></code>
        </dt>

        <dd>
          <p>toggles default setting of 8-bit character
          translations or CJK mode for the startup character
          set.</p>
        </dd>

        <dt><code><strong>-realm</strong></code>
        </dt>

        <dd>
          <p>restricts access to URLs in the starting realm.</p>
        </dd>

        <dt><code><strong>-reload</strong></code>
        </dt>

        <dd>
          <p>flushes the cache on a proxy server (only the first
          document affected).</p>
        </dd>

        <dt><code><strong>-restrictions</strong></code>
        </dt>

        <dd>
          <p>allows a list of services to be disabled selectively
          and takes the following form:</p>
        </dd>

        <dd>
          <p><em>lynx
          -restrictions=[option][,option][,option]...</em>
          </p>
        </dd>

        <dd>
          <p>The list of recognized options is printed if none are
          specified.</p>

          <dl>
            <dt><strong><samp>?</samp></strong>
            </dt>

            <dd>
              <p>if used alone, lists restrictions in effect.</p>
            </dd>

            <dt><strong><samp>all</samp></strong>
            </dt>

            <dd>
              <p>restricts all options listed below.</p>
            </dd>

            <dt><strong><samp>bookmark</samp></strong>
            </dt>

            <dd>
              <p>disallow changing the location of the bookmark
              file.</p>
            </dd>

            <dt><strong><samp>bookmark_exec</samp></strong>
            </dt>

            <dd>
              <p>disallow execution links via the bookmark
              file.</p>
            </dd>

            <dt><strong><samp>change_exec_perms</samp></strong>
            </dt>

            <dd>
              <p>disallow changing the eXecute permission on files
              (but still allow it for directories) when local file
              management is enabled.</p>
            </dd>

            <dt><strong><samp>chdir</samp></strong>
            </dt>

            <dd>
              <p>disallow command which changes Lynx's working
              directory.</p>
            </dd>

            <dt><strong><samp>default</samp></strong>
            </dt>

            <dd>
              <p>same as command line option <em>-anonymous</em>.
              Set default restrictions for anonymous users. All
              specific services listed are always restricted,
              except for: inside_telnet, outside_telnet,
              inside_ftp, outside_ftp, inside_rlogin,
              outside_rlogin, inside_news, outside_news,
              telnet_port, jump, mail, print, exec, and goto. The
              settings for these, as well as additional goto
              restrictions for specific URL schemes that are also
              applied, are derived from definitions within
              userdefs.h.</p>

              <p>Note that this is the only option value that may
              have the effect of <em>removing</em> some
              restrictions, if they have been set by other options,
              namely for those services that <em>are</em> allowed
              by default according to userdefs.h. However, if the
              separate command line option form
              (<em>-anonymous</em>) is used, Lynx takes care to set
              the default restrictions before handling additional
              <em>-restrictions=</em> options (even if they precede
              the <em>anonymous</em> option), so that this cannot
              happen.</p>
            </dd>

            <dt><strong><samp>dired_support</samp></strong>
            </dt>

            <dd>
              <p>disallow local file management.</p>
            </dd>

            <dt><strong><samp>disk_save</samp></strong>
            </dt>

            <dd>
              <p>disallow saving to disk in the download and print
              menus.</p>
            </dd>

            <dt><strong><samp>dotfiles</samp></strong>
            </dt>

            <dd>
              <p>disallow access to, or creation of, hidden (dot)
              files.</p>
            </dd>

            <dt><strong><samp>download</samp></strong>
            </dt>

            <dd>
              <p>disallow some downloaders in the download menu.
              This does <em>not</em> imply the disk_save
              restriction. It also does not disable the DOWNLOAD
              command, and does not prevent "Download or Cancel"
              offers when a MIME type cannot otherwise be handled.
              Those are only disabled if additionally the disk_save
              restriction is in effect <em>and</em> no download
              methods are defined in a <a href="#lynx.cfg">Lynx
              configuration file</a> that are marked as "always
              ENABLED" (or, alternatively, if the -validate switch
              is used).</p>
            </dd>

            <dt><strong><samp>editor</samp></strong>
            </dt>

            <dd>
              <p>disallow external editing.</p>
            </dd>

            <dt><strong><samp>exec</samp></strong>
            </dt>

            <dd>
              <p>disable execution scripts.</p>
            </dd>

            <dt><strong><samp>exec_frozen</samp></strong>
            </dt>

            <dd>
              <p>disallow the user from changing the local
              execution option.</p>
            </dd>

            <dt><strong><samp>externals</samp></strong>
            </dt>

            <dd>
              <p>disallow some "EXTERNAL" configuration lines, if
              support for passing URLs to external applications
              (with the EXTERN_LINK or EXTERN_PAGE command) is
              compiled in.</p>
            </dd>

            <dt><strong><samp>file_url</samp></strong>
            </dt>

            <dd>
              <p>disallow using G)oto, served links or bookmarks
              for file: URLs.</p>
            </dd>

            <dt><strong><samp>goto</samp></strong>
            </dt>

            <dd>
              <p>disable the &ldquo;<samp>g</samp>&rdquo; (goto)
              command.</p>
            </dd>

            <dt><strong><samp>inside_ftp</samp></strong>
            </dt>

            <dd>
              <p>disallow ftps for people coming from inside your
              domain.</p>
            </dd>

            <dt><strong><samp>inside_news</samp></strong>
            </dt>

            <dd>
              <p>disallow USENET news reading and posting for
              people coming from inside you domain. This applies to
              "news", "nntp", "newspost", and "newsreply" URLs, but
              not to "snews", "snewspost", or "snewsreply" in case
              they are supported.</p>
            </dd>

            <dt><strong><samp>inside_rlogin</samp></strong>
            </dt>

            <dd>
              <p>disallow rlogins for people coming from inside
              your domain.</p>
            </dd>

            <dt><strong><samp>inside_telnet</samp></strong>
            </dt>

            <dd>
              <p>disallow telnets for people coming from inside
              your domain.</p>
            </dd>

            <dt><strong><samp>jump</samp></strong>
            </dt>

            <dd>
              <p>disable the &ldquo;<samp>j</samp>&rdquo; (jump)
              command.</p>
            </dd>

            <dt><strong><samp>lynxcgi</samp></strong>
            </dt>

            <dd>
              <p>disallow execution of Lynx CGI URLs.</p>
            </dd>

            <dt><strong><samp>mail</samp></strong>
            </dt>

            <dd>
              <p>disallow mailing feature.</p>
            </dd>

            <dt><strong><samp>multibook</samp></strong>
            </dt>

            <dd>
              <p>disallow multiple bookmarks.</p>
            </dd>

            <dt><strong><samp>news_post</samp></strong>
            </dt>

            <dd>
              <p>disallow USENET News posting,</p>
            </dd>

            <dt><strong><samp>options_save</samp></strong>
            </dt>

            <dd>
              <p>disallow saving options in .lynxrc.</p>
            </dd>

            <dt><strong><samp>outside_ftp</samp></strong>
            </dt>

            <dd>
              <p>disallow ftps for people coming from outside your
              domain.</p>
            </dd>

            <dt><strong><samp>outside_news</samp></strong>
            </dt>

            <dd>
              <p>disallow USENET news reading and posting for
              people coming from outside you domain. This applies
              to "news", "nntp", "newspost", and "newsreply" URLs,
              but not to "snews", "snewspost", or "snewsreply" in
              case they are supported.</p>
            </dd>

            <dt><strong><samp>outside_rlogin</samp></strong>
            </dt>

            <dd>
              <p>disallow rlogins for people coming from outside
              your domain.</p>
            </dd>

            <dt><strong><samp>outside_telnet</samp></strong>
            </dt>

            <dd>
              <p>disallow telnets for people coming from outside
              your domain.</p>
            </dd>

            <dt><strong><samp>print</samp></strong>
            </dt>

            <dd>
              <p>disallow most print options.</p>
            </dd>

            <dt><strong><samp>shell</samp></strong>
            </dt>

            <dd>
              <p>disallow shell escapes.</p>
            </dd>

            <dt><strong><samp>suspend</samp></strong>
            </dt>

            <dd>
              <p>disallow <em>Control-Z</em> suspends with escape
              to shell on Unix.</p>
            </dd>

            <dt><strong><samp>telnet_port</samp></strong>
            </dt>

            <dd>
              <p>disallow specifying a port in telnet G)oto's.</p>
            </dd>

            <dt><strong><samp>useragent</samp></strong>
            </dt>

            <dd>
              <p>disallow modifications of the User-Agent
              header.</p>
            </dd>
          </dl>
        </dd>

        <dt><code><strong>-resubmit_posts</strong></code>
        </dt>

        <dd>
          <p>toggles forced resubmissions (no-cache) of forms with
          method POST when the documents they returned are sought
          with the PREV_DOC (<em>left-arrow</em>) command or from
          the <em>History Page</em>.</p>
        </dd>

        <dt><code><strong>-rlogin</strong></code>
        </dt>

        <dd>
          <p>disable recognition of rlogin commands.</p>
        </dd>

        <dt><code><strong>-scrollbar</strong></code>
        </dt>

        <dd>
          <p>toggles showing scrollbar.</p>
        </dd>

        <dt><code><strong>-scrollbar_arrow</strong></code>
        </dt>

        <dd>
          <p>toggles showing arrows at ends of the scrollbar.</p>
        </dd>

        <dt><code><strong>-selective</strong></code>
        </dt>

        <dd>
          <p>require .www_browsable files to browse
          directories.</p>
        </dd>

        <dt>
        <code><strong>-session=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>resumes from specified file on startup and saves
          session to that file on exit.</p>
        </dd>

        <dt>
        <code><strong>-sessionin=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>resumes session from specified file.</p>
        </dd>

        <dt>
        <code><strong>-sessionout=</strong><em>FILENAME</em></code>
        </dt>

        <dd>
          <p>saves session to specified file.</p>
        </dd>

        <dt><code><strong>-short_url</strong></code>
        </dt>

        <dd>
          <p>show very long URLs in the status line with "..." to
          represent the portion which cannot be displayed. The
          beginning and end of the URL are displayed, rather than
          suppressing the end.</p>
        </dd>

        <dt><code><strong>-show_cursor</strong></code>
        </dt>

        <dd>
          <p>If enabled the cursor will not be hidden in the right
          hand corner but will instead be positioned at the start
          of the currently selected link. Show cursor is the
          default for systems without FANCY_CURSES capabilities.
          The default configuration can be changed in userdefs.h or
          <a href="#lynx.cfg">lynx.cfg</a>. It also can be set and
          saved via the &ldquo;o&rdquo;ptions menu. The command
          line switch toggles the default.</p>
        </dd>

        <dt><code><strong>-show_rate</strong></code>
        </dt>

        <dd>
          <p>If enabled the transfer rate is shown in bytes/second.
          If disabled, no transfer rate is shown. Use lynx.cfg or
          the options menu to select KiB/second and/or ETA.</p>
        </dd>

        <dt><code><strong>-soft_dquotes</strong></code>
        </dt>

        <dd>
          <p>toggles emulation of the old Netscape and Mosaic bug
          which treated &ldquo;<samp>&gt;</samp>&rdquo; as a
          co-terminator for double-quotes and tags.</p>
        </dd>

        <dt><code><strong>-source</strong></code>
        </dt>

        <dd>
          <p>works the same as dump but outputs HTML source instead
          of formatted text. For example</p>

          <blockquote>
            <pre>
lynx -source . &gt;foo.html
</pre>
          </blockquote>

          <p>generates HTML source listing the files in the current
          directory. Each file is marked by an HREF relative to the
          parent directory. Add a trailing slash to make the HREF's
          relative to the current directory:</p>

          <blockquote>
            <pre>
lynx -source ./ &gt;foo.html
</pre>
          </blockquote>
        </dd>

        <dt><code><strong>-stack_dump</strong></code>
        </dt>

        <dd>
          <p>disable SIGINT cleanup handler.</p>
        </dd>

        <dt><code><strong>-startfile_ok</strong></code>
        </dt>

        <dd>
          <p>allow non-http startfile and homepage with
          <em>-validate</em>.</p>
        </dd>

        <dt><code><strong>-stderr</strong></code>
        </dt>

        <dd>
          <p>When dumping a document using
          <code><strong>-dump</strong></code> or
          <code><strong>-source</strong></code>, Lynx normally does
          not display alert (error) messages that you see on the
          screen in the status line. Use the
          <code><strong>-stderr</strong></code> option to tell Lynx
          to write these messages to the standard error.</p>
        </dd>

        <dt><code><strong>-stdin</strong></code>
        </dt>

        <dd>
          <p>read the startfile from standard input (UNIX
          only).</p>
        </dd>

        <dt><code><strong>-syslog=</strong><em>text</em></code>
        </dt>

        <dd>
          <p>information for syslog call.</p>
        </dd>

        <dt><code><strong>-syslog-urls</strong></code>
        </dt>

        <dd>
          <p>log requested URLs with syslog.</p>
        </dd>

        <dt><code><strong>-tagsoup</strong></code>
        </dt>

        <dd>
          <p>initialize DTD with "TagSoup" tables, <a href=
          "keystrokes/option_help.html#tagsoup">more
          details</a>.</p>
        </dd>

        <dt><code><strong>-telnet</strong></code>
        </dt>

        <dd>
          <p>disable recognition of telnet commands.</p>
        </dd>

        <dt><code><strong>-term=</strong><em>TERM</em></code>
        </dt>

        <dd>
          <p>tell Lynx what terminal type to assume it is talking
          to. (This may be useful for remote execution, when, for
          example, Lynx connects to a remote TCP/IP port that
          starts a script that, in turn, starts another Lynx
          process.)</p>
        </dd>

        <dt><code><strong>-timeout=</strong><em>N</em></code>
        </dt>

        <dd>
          <p>For win32, sets the network read-timeout, where
          <em>N</em> is given in seconds.</p>
        </dd>

        <dt><code><strong>-tlog</strong></code>
        </dt>

        <dd>
          <p>toggles use of a <em>Lynx Trace Log</em> for the
          session. The log is named <em>Lynx.trace</em> and is
          created in the home directory when Lynx trace mode is
          turned on via the <em>-trace</em> command line switch
          (see below), or via the TRACE_TOGGLE (<em>Control-T</em>)
          keystroke command. Once a log is started for the session,
          all trace and other stderr messages are written to the
          log. The contents of the log can be examined during the
          session via the TRACE_LOG (normally,
          &ldquo;<samp>;</samp>&rdquo;) keystroke command. If use
          of a Lynx Trace Log is turned off, any trace output will
          go to the standard error stream.</p>
        </dd>

        <dt><code><strong>-tna</strong></code>
        </dt>

        <dd>
          <p>turns on <a href="#tna">"Textfields Need
          Activation"</a> mode.</p>
        </dd>

        <dt><code><strong>-trace</strong></code>
        </dt>

        <dd>
          <p>turns on Lynx trace mode. If a Lynx Trace Log
          (<em>Lynx.trace</em> in the home directory) has been
          started for the current session, all trace messages are
          written to that log, and can be examined during the
          session via the TRACE_LOG (normally,
          &ldquo;<samp>;</samp>&rdquo;) command. If no Trace Log
          file is in use, trace messages go to stderr.</p>
        </dd>

        <dt>
        <code><strong>-trace_mask=</strong><em>value</em></code>
        </dt>

        <dd>
          <p>turn on optional traces, which may result in very
          large trace files. Logically OR the values to combine
          options:</p>

          <dl>
            <dt>1</dt>

            <dd>
              <p>SGML character parsing states</p>
            </dd>

            <dt>2</dt>

            <dd>
              <p>color-style</p>
            </dd>

            <dt>4</dt>

            <dd>
              <p>TRST (table layout)</p>
            </dd>

            <dt>8</dt>

            <dd>
              <p>config (lynx.cfg and .lynxrc contents)</p>
            </dd>

            <dt>16</dt>

            <dd>
              <p>binary string copy/append, used in form data
              construction.</p>
            </dd>
          </dl>
        </dd>

        <dt><code><strong>-traversal</strong></code>
        </dt>

        <dd>
          <p>traverse all http links derived from startfile. When
          used with <em>-crawl</em>, each link that begins with the
          same string as startfile is output to a file, intended
          for indexing. See CRAWL.announce for more
          information.</p>
        </dd>

        <dt><code><strong>-trim_input_fields</strong></code>
        </dt>

        <dd>
          <p>trim input text/textarea fields in forms.</p>
        </dd>

        <dt><code><strong>-underscore</strong></code>
        </dt>

        <dd>
          <p>toggles use of _underline_ format in dumps.</p>
        </dd>

        <dt><code><strong>-update_term_title</strong></code>
        </dt>

        <dd>
          <p>enables updating the title in terminal emulators. Use
          only if your terminal emulator supports that escape code.
          Has no effect when used with -notitle.</p>
        </dd>

        <dt><code><strong>-use_mouse</strong></code>
        </dt>

        <dd>
          <p>turn on mouse support, if available.</p>
        </dd>

        <dt>
        <code><strong>-useragent=</strong><em>STRING</em></code>
        </dt>

        <dd>
          <p>set different Lynx User-Agent header. Lynx produces a
          warning on startup if the <em>STRING</em> does not
          contain "Lynx" or "L_y_n_x", see the <a href=
          "#noteUA">note</a> in the Options Menu section for
          rationale.</p>
        </dd>

        <dt><code><strong>-validate</strong></code>
        </dt>

        <dd>
          <p>accept only http URLs (meant for validation).</p>
        </dd>

        <dd>
          <p>This flag implies security restrictions generally more
          severe than <em>-anonymous</em>: restriction options as
          for <em>-restrictions=all</em>, with the notable
          exception that goto remains enabled for http and https
          URLs; in addition, the PRINT and DOWNLOAD commands are
          completely disabled, and use of a Trace Log file is
          forced off.</p>
        </dd>

        <dd>
          <p>Any relaxing of restriction that might be implied by
          an also present (or implied) <em>-anonymous</em> flag is
          overridden, the only way to possibly relax <em>some</em>
          of the restrictions to the level applicable for
          "anonymous" accounts is with an explicit
          <em>-restrictions=default</em>.</p>
        </dd>

        <dt><code><strong>-verbose</strong></code>
        </dt>

        <dd>
          <p>toggles [LINK], [IMAGE] and [INLINE] comments with
          filenames of these images.</p>
        </dd>

        <dt><code><strong>-version</strong></code>
        </dt>

        <dd>
          <p>print version information.</p>
        </dd>

        <dt><code><strong>-vikeys</strong></code>
        </dt>

        <dd>
          <p>enable vi-like key movement.</p>
        </dd>

        <dt><code><strong>-wdebug</strong></code>
        </dt>

        <dd>
          <p>enable Waterloo tcp/ip packet debug (print to watt
          debugfile). This applies only to DOS versions compiled
          with WATTCP or WATT-32.</p>
        </dd>

        <dt><code><strong>-width=</strong><em>NUMBER</em></code>
        </dt>

        <dd>
          <p>number of columns for formatting of dumps, default is
          80.</p>
        </dd>

        <dt><code><strong>-with_backspaces</strong></code>
        </dt>

        <dd>
          <p>emit backspaces in output if -dumping or -crawling
          (like <code>man</code> does).</p>
        </dd>
      </dl>
    </dd>
  </dl>

  <p>No options are required, nor is a startfile argument required.
  White space can be used in place of equal sign separators
  (&ldquo;<samp>=</samp>&rdquo;) appearing in the option list
  above. It can not be used in place of the equal signs in forms
  like "-option=on" and "-option=off" for simple switches and
  toggles, for which "-option" alone (without a value) is
  valid.</p>

  <p>[<a href="#ToC-Invoking">ToC</a>]</p>

  <h2 id="Environments"><a name="Environment" id=
  "Environment"><em>Environment variables used by Lynx</em></a></h2>

  <p>Lynx uses certain environment variables and sets a few of
  them. Please visit a <a href=
  "keystrokes/environments.html">separate page</a> for this rather
  technical information.</p>

  <p>[<a href="#ToC-Environment">ToC</a>]</p>

  <h2 id="id-lynx.cfg"><a name="lynx.cfg" id="lynx.cfg">Main
  configuration file lynx.cfg</a></h2>

  <p>Lynx has several levels of customization: from the Options
  Menu (accessible on-line, and possibly stored in your local
  .lynxrc file), via command-line switches on startup (mainly for
  batch processing). The most important and numerous default
  settings are stored in the Lynx configuration file
  <em>lynx.cfg</em>.</p>

  <p>If you are on a UNIX system you should have appropriate
  permissions to make changes there or ask your system
  administrator to modify lynx.cfg for your needs. This file
  provides default settings for all accounts on your system. It may
  be copied to your shell account and included with -cfg command
  line switch or via an environment variable LYNX_CFG (if you have
  shell access). Starting with version 2.8.1 Lynx has an include
  facility so you can load the system-wide configuration file and
  easily add one or more settings from your local add-on
  configuration file. It is really cool to read lynx.cfg with its
  comments for hundreds of options, most of them commented out
  because they are built-in defaults. You may visit an index of
  options: <a href=
  "https://lynx.invisible-island.net/release/lynx_help/cattoc.html">
  by category</a> or <a href=
  "https://lynx.invisible-island.net/release/lynx_help/alphatoc.html">
  by alphabet</a>.</p>

  <p>To view your current configuration derived from lynx.cfg and
  any included configuration files, press <em>&ldquo;g&rdquo;</em>
  and type in &ldquo;<samp>lynxcfg:</samp>&rdquo;. If you are using
  the forms-based <em>Options Menu</em>, you may press
  <em>&ldquo;o&rdquo;</em> for the Options Menu and follow the
  <em>Check your lynx.cfg</em>'s link near the bottom.</p>

  <p>However, for those who have a restricted account many Lynx
  features may be disabled by the system administrator, you
  probably will not see your lynx.cfg.</p>

  <p>[<a href="#ToC-lynx.cfg">ToC</a>]</p>

  <h2 id="id-Hist"><a name="Hist" id="Hist">Lynx development
  history</a></h2>

  <p>Lynx grew out of efforts to build a campus-wide information
  system at The University of Kansas. The earliest versions of Lynx
  provided a user-friendly, distributed hypertext interface for
  users connected to multiuser (Unix and VMS) systems via
  curses-oriented display devices. A custom hypertext format was
  developed to support hypertext links to local files and files on
  remote Gopher servers. Using Gopher servers for distributed file
  service allowed information providers to publish information from
  a wide variety of platforms (including Unix, VMS, VM/CMS and
  Macintosh). In addition, Lynx became the most user-friendly
  Gopher client, although that was only an ancillary
  capability.</p>

  <p>This distributed approach let providers retain complete
  control over their information, but it made communication between
  users and providers somewhat more difficult. Following the lead
  of Neal Erdwien, of Kansas State University, the Lynx hypertext
  format was extended to include links for including ownership
  information with each file. This information made it possible for
  users running Lynx clients to send comments and suggestions via
  e-mail to the providers.</p>

  <p>This early version of Lynx was also augmented to support
  hypertext links to programs running on remote systems. It
  included the ability to open a Telnet connection, as well as the
  ability to start programs via rexec, inetd, or by direct socket
  connects. These capabilities were included to allow users to
  access databases or custom program interfaces.</p>

  <p>A subsequent version of Lynx incorporated the World Wide Web
  libraries to allow access to the full list of WWW servers, along
  with the option to build hypertext documents in HTML, rather than
  the native Lynx format. HTML has become far more widely used, and
  the native format has been phased out. With the addition of the
  WWW libraries, Lynx became a fully-featured WWW client, limited
  only by the display capabilities offered in the curses
  environment.</p>

  <p>Lynx was designed by Lou Montulli, Charles Rezac and Michael
  Grobe of Academic Computing Services at The University of Kansas.
  Lynx was implemented by Lou Montulli and maintained by Garrett
  Arch Blythe and Craig Lavender.</p>

  <p>Members of the <a href="lynx-dev.html">lynx-dev</a> list have
  developed and supported Lynx since release of v2.3 in May
  1994.<br>
  The Lynx2-3FM code set was released as v2.4 in June 1995.<br>
  The Lynx2-4FM code set was released as v2.5 in May 1996.<br>
  The Lynx2-5FM code set was released as v2.6 in September
  1996.<br>
  The Lynx2-6FM code set was released as v2.7 in February 1997.<br>
  The v2-7FM code set was released as v2.7.1 in April 1997.<br>
  The v2-7-1FM code set was released as v2.7.2 in January 1998.<br>
  The 2.7.1 development set was released as v2.8 in March 1998.<br>
  The 2.8 development set was released as v2.8.1 in October
  1998.<br>
  The 2.8.1 development set was released as v2.8.2 in June
  1999.<br>
  The 2.8.2 development set was released as v2.8.3 in April
  2000.<br>
  The 2.8.3 development set was released as v2.8.4 in July
  2001.<br>
  The 2.8.4 development set was released as v2.8.5 in February
  2004.<br>
  The 2.8.5 development set was released as v2.8.6 in October
  2006.<br>
  The 2.8.6 development set was released as v2.8.7 in July
  2009.<br>
  The 2.8.7 development set was released as v2.8.8 in February
  2014.<br>
  The 2.8.8 development set was released as v2.8.9 in July
  2018.<br>
  The 2.8.9 development set was released as v2.9.0 in January
  2024.<br></p>

  <p>Lynx has incorporated code from a variety of sources along the
  way. The earliest versions of Lynx included code from Earl Fogel
  of Computing Services at the University of Saskatchewan, who
  implemented HYPERREZ in the Unix environment. Those versions also
  incorporated libraries from the Unix Gopher clients developed at
  the University of Minnesota, and the later versions of Lynx rely
  on the WWW client library code developed by Tim Berners-Lee (and
  others) and the WWW community.</p>

  <p>Contributors have generally been acknowledged in the CHANGES
  file. Earlier CHANGES file can be found in the docs/ subdirectory
  of this distribution.</p>

  <p>Information on obtaining the most current version of Lynx is
  available at <a href=
  "https://lynx.invisible-island.net/current/index.html">the
  current distribution page</a>.</p>

  <p>[<a href="#Contents">ToC</a>]</p>
</body>
</html>