File: generate.c

package info (click to toggle)
lua-discount 2.1.8-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 224 kB
  • ctags: 418
  • sloc: ansic: 2,976; makefile: 38
file content (1460 lines) | stat: -rw-r--r-- 28,809 bytes parent folder | download | duplicates (3)
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
/* markdown: a C implementation of John Gruber's Markdown markup language.
 *
 * Copyright (C) 2007 David L Parsons.
 * The redistribution terms are provided in the COPYRIGHT file that must
 * be distributed with this source code.
 */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <time.h>
#include <ctype.h>

#include "config.h"

#include "cstring.h"
#include "markdown.h"
#include "amalloc.h"

typedef int (*stfu)(const void *, const void *);

/* forward declarations */
static int iscodeblock(MMIOT *);
static void code(int, MMIOT *);
static void text(MMIOT *f);
static Paragraph *display(Paragraph *, MMIOT *);

/* externals from markdown.c */
int __mkd_footsort(Footnote *, Footnote *);

/*
 * push text into the generator input buffer
 */
static void push(char *bfr, int size, MMIOT *f)
{
	while (size-- > 0)
		EXPAND(f->in) = *bfr++;
}

/* look <i> characters ahead of the cursor.
 */
static int peek(MMIOT *f, int i)
{

	i += (f->isp - 1);

	return (i >= 0) && (i < S(f->in)) ? T(f->in)[i] : EOF;
}

/* pull a byte from the input buffer
 */
static int pull(MMIOT *f)
{
	return (f->isp < S(f->in)) ? T(f->in)[f->isp++] : EOF;
}

/* return a pointer to the current position in the input buffer.
 */
static char *cursor(MMIOT *f) { return T(f->in) + f->isp; }

static int isthisspace(MMIOT *f, int i)
{
	int c = peek(f, i);

	return isspace(c) || (c == EOF);
}

static int isthisalnum(MMIOT *f, int i)
{
	int c = peek(f, i);

	return (c != EOF) && isalnum(c);
}

static int isthisnonword(MMIOT *f, int i)
{
	return isthisspace(f, i) || ispunct(peek(f, i));
}

/* return/set the current cursor position
 */
#define mmiotseek(f, x) (f->isp = x)
#define mmiottell(f) (f->isp)

/* move n characters forward ( or -n characters backward) in the input buffer.
 */
static void shift(MMIOT *f, int i)
{
	if (f->isp + i >= 0)
		f->isp += i;
}

/* Qchar()
 */
static void Qchar(int c, MMIOT *f)
{
	block *cur;

	if (S(f->Q) == 0) {
		cur = &EXPAND(f->Q);
		memset(cur, 0, sizeof *cur);
		cur->b_type = bTEXT;
	} else
		cur = &T(f->Q)[S(f->Q) - 1];

	EXPAND(cur->b_text) = c;
}

/* Qstring()
 */
static void Qstring(char *s, MMIOT *f)
{
	while (*s)
		Qchar(*s++, f);
}

/* Qwrite()
 */
static void Qwrite(char *s, int size, MMIOT *f)
{
	while (size-- > 0)
		Qchar(*s++, f);
}

/* Qprintf()
 */
static void Qprintf(MMIOT *f, char *fmt, ...)
{
	char bfr[80];
	va_list ptr;

	va_start(ptr, fmt);
	vsnprintf(bfr, sizeof bfr, fmt, ptr);
	va_end(ptr);
	Qstring(bfr, f);
}

/* Qem()
 */
static void Qem(MMIOT *f, char c, int count)
{
	block *p = &EXPAND(f->Q);

	memset(p, 0, sizeof *p);
	p->b_type = (c == '*') ? bSTAR : bUNDER;
	p->b_char = c;
	p->b_count = count;

	memset(&EXPAND(f->Q), 0, sizeof(block));
}

/* generate html from a markup fragment
 */
void ___mkd_reparse(char *bfr, int size, int flags, MMIOT *f)
{
	MMIOT sub;

	___mkd_initmmiot(&sub, f->footnotes);

	sub.flags = f->flags | flags;
	sub.cb = f->cb;

	push(bfr, size, &sub);
	EXPAND(sub.in) = 0;
	S(sub.in)--;

	text(&sub);
	___mkd_emblock(&sub);

	Qwrite(T(sub.out), S(sub.out), f);

	___mkd_freemmiot(&sub, f->footnotes);
}

/*
 * write out a url, escaping problematic characters
 */
static void puturl(char *s, int size, MMIOT *f, int display)
{
	unsigned char c;

	while (size-- > 0) {
		c = *s++;

		if (c == '\\' && size-- > 0) {
			c = *s++;

			if (!(ispunct(c) || isspace(c)))
				Qchar('\\', f);
		}

		if (c == '&')
			Qstring("&amp;", f);
		else if (c == '<')
			Qstring("&lt;", f);
		else if (c == '"')
			Qstring("%22", f);
		else if (isalnum(c) || ispunct(c) || (display && isspace(c)))
			Qchar(c, f);
		else if (c == 003) /* untokenize ^C */
			Qstring("  ", f);
		else
			Qprintf(f, "%%%02X", c);
	}
}

/* advance forward until the next character is not whitespace
 */
static int eatspace(MMIOT *f)
{
	int c;

	for (; ((c = peek(f, 1)) != EOF) && isspace(c); pull(f))
		;
	return c;
}

/* (match (a (nested (parenthetical (string.)))))
 */
static int parenthetical(int in, int out, MMIOT *f)
{
	int size, indent, c;

	for (indent = 1, size = 0; indent; size++) {
		if ((c = pull(f)) == EOF)
			return EOF;
		else if (c == in)
			++indent;
		else if ((c == '\\') && (peek(f, 1) == out)) {
			++size;
			pull(f);
		} else if (c == out)
			--indent;
	}
	return size ? (size - 1) : 0;
}

/* extract a []-delimited label from the input stream.
 */
static int linkylabel(MMIOT *f, Cstring *res)
{
	char *ptr = cursor(f);
	int size;

	if ((size = parenthetical('[', ']', f)) != EOF) {
		T(*res) = ptr;
		S(*res) = size;
		return 1;
	}
	return 0;
}

/* see if the quote-prefixed linky segment is actually a title.
 */
static int linkytitle(MMIOT *f, char quote, Footnote *ref)
{
	int whence = mmiottell(f);
	char *title = cursor(f);
	char *e;
	register int c;

	while ((c = pull(f)) != EOF) {
		e = cursor(f);
		if (c == quote) {
			if ((c = eatspace(f)) == ')') {
				T(ref->title) = 1 + title;
				S(ref->title) = (e - title) - 2;
				return 1;
			}
		}
	}
	mmiotseek(f, whence);
	return 0;
}

/* extract a =HHHxWWW size from the input stream
 */
static int linkysize(MMIOT *f, Footnote *ref)
{
	int height = 0, width = 0;
	int whence = mmiottell(f);
	int c;

	if (isspace(peek(f, 0))) {
		pull(f); /* eat '=' */

		for (c = pull(f); isdigit(c); c = pull(f))
			width = (width * 10) + (c - '0');

		if (c == 'x') {
			for (c = pull(f); isdigit(c); c = pull(f))
				height = (height * 10) + (c - '0');

			if (isspace(c))
				c = eatspace(f);

			if ((c == ')') || ((c == '\'' || c == '"') &&
					   linkytitle(f, c, ref))) {
				ref->height = height;
				ref->width = width;
				return 1;
			}
		}
	}
	mmiotseek(f, whence);
	return 0;
}

/* extract a (-prefixed url from the input stream.
 * the label is either of the format `<link>`, where I
 * extract until I find a >, or it is of the format
 * `text`, where I extract until I reach a ')', a quote,
 * or (if image) a '='
 */
static int linkyurl(MMIOT *f, int image, Footnote *p)
{
	int c;
	int mayneedtotrim = 0;

	if ((c = eatspace(f)) == EOF)
		return 0;

	if (c == '<') {
		pull(f);
		mayneedtotrim = 1;
	}

	T(p->link) = cursor(f);
	for (S(p->link) = 0; (c = peek(f, 1)) != ')'; ++S(p->link)) {
		if (c == EOF)
			return 0;
		else if ((c == '"' || c == '\'') && linkytitle(f, c, p))
			break;
		else if (image && (c == '=') && linkysize(f, p))
			break;
		else if ((c == '\\') && ispunct(peek(f, 2))) {
			++S(p->link);
			pull(f);
		}
		pull(f);
	}
	if (peek(f, 1) == ')')
		pull(f);

	___mkd_tidy(&p->link);

	if (mayneedtotrim && (T(p->link)[S(p->link) - 1] == '>'))
		--S(p->link);

	return 1;
}

/* prefixes for <automatic links>
 */
static struct _protocol {
	char *name;
	int nlen;
} protocol[] = {
#define _aprotocol(x)                                                          \
	{                                                                      \
		x, (sizeof x) - 1                                              \
	}
    _aprotocol("https://"), _aprotocol("http://"), _aprotocol("news://"),
    _aprotocol("ftp://"),
#undef _aprotocol
};
#define NRPROTOCOLS (sizeof protocol / sizeof protocol[0])

static int isautoprefix(char *text, int size)
{
	int i;
	struct _protocol *p;

	for (i = 0, p = protocol; i < NRPROTOCOLS; i++, p++)
		if ((size >= p->nlen) &&
		    strncasecmp(text, p->name, p->nlen) == 0)
			return 1;
	return 0;
}

/*
 * all the tag types that linkylinky can produce are
 * defined by this structure.
 */
typedef struct linkytype {
	char *pat;
	int szpat;
	char *link_pfx; /* tag prefix and link pointer  (eg: "<a href="\"" */
	char *link_sfx; /* link suffix			(eg: "\""          */
	int WxH;	/* this tag allows width x height arguments */
	char *text_pfx; /* text prefix                  (eg: ">"           */
	char *text_sfx; /* text suffix			(eg: "</a>"        */
	int flags;      /* reparse flags */
	int kind;       /* tag is url or something else? */
#define IS_URL 0x01
} linkytype;

static linkytype imaget = {0, 0, "<img src=\"", "\"", 1, " alt=\"", "\" />",
			   DENY_IMG | INSIDE_TAG, IS_URL};
static linkytype linkt = {0, 0, "<a href=\"", "\"", 0, ">", "</a>", DENY_A,
			  IS_URL};

/*
 * pseudo-protocols for [][];
 *
 * id: generates <a id="link">tag</a>
 * class: generates <span class="link">tag</span>
 * raw: just dump the link without any processing
 */
static linkytype specials[] = {
    {"id:", 3, "<a id=\"", "\"", 0, ">", "</a>", 0, IS_URL},
    {"class:", 6, "<span class=\"", "\"", 0, ">", "</span>", 0, 0},
    {"raw:", 4, 0, 0, 0, 0, 0, DENY_HTML, 0},
    {"abbr:", 5, "<abbr title=\"", "\"", 0, ">", "</abbr>", 0, 0},
};

#define NR(x) (sizeof x / sizeof x[0])

/* see if t contains one of our pseudo-protocols.
 */
static linkytype *pseudo(Cstring t)
{
	int i;
	linkytype *r;

	for (i = 0, r = specials; i < NR(specials); i++, r++) {
		if ((S(t) > r->szpat) &&
		    (strncasecmp(T(t), r->pat, r->szpat) == 0))
			return r;
	}
	return 0;
}

/* print out the start of an `img' or `a' tag, applying callbacks as needed.
 */
static void printlinkyref(MMIOT *f, linkytype *tag, char *link, int size)
{
	char *edit;

	Qstring(tag->link_pfx, f);

	if (tag->kind & IS_URL) {
		if (f->cb->e_url &&
		    (edit = (*f->cb->e_url)(link, size, f->cb->e_data))) {
			puturl(edit, strlen(edit), f, 0);
			if (f->cb->e_free)
				(*f->cb->e_free)(edit, f->cb->e_data);
		} else
			puturl(link + tag->szpat, size - tag->szpat, f, 0);
	} else
		___mkd_reparse(link + tag->szpat, size - tag->szpat, INSIDE_TAG,
			       f);

	Qstring(tag->link_sfx, f);

	if (f->cb->e_flags &&
	    (edit = (*f->cb->e_flags)(link, size, f->cb->e_data))) {
		Qchar(' ', f);
		Qstring(edit, f);
		if (f->cb->e_free)
			(*f->cb->e_free)(edit, f->cb->e_data);
	}
} /* printlinkyref */

/* print out a linky (or fail if it's Not Allowed)
 */
static int linkyformat(MMIOT *f, Cstring text, int image, Footnote *ref)
{
	linkytype *tag;

	if (image)
		tag = &imaget;
	else if (tag = pseudo(ref->link)) {
		if (f->flags & (NO_PSEUDO_PROTO | SAFELINK))
			return 0;
	} else if ((f->flags & SAFELINK) && T(ref->link) &&
		   (T(ref->link)[0] != '/') &&
		   !isautoprefix(T(ref->link), S(ref->link)))
		/* if SAFELINK, only accept links that are local or
		 * a well-known protocol
		 */
		return 0;
	else
		tag = &linkt;

	if (f->flags & tag->flags)
		return 0;

	if (tag->link_pfx) {
		printlinkyref(f, tag, T(ref->link), S(ref->link));

		if (tag->WxH) {
			if (ref->height)
				Qprintf(f, " height=\"%d\"", ref->height);
			if (ref->width)
				Qprintf(f, " width=\"%d\"", ref->width);
		}

		if (S(ref->title)) {
			Qstring(" title=\"", f);
			___mkd_reparse(T(ref->title), S(ref->title), INSIDE_TAG,
				       f);
			Qchar('"', f);
		}

		Qstring(tag->text_pfx, f);
		___mkd_reparse(T(text), S(text), tag->flags, f);
		Qstring(tag->text_sfx, f);
	} else
		Qwrite(T(ref->link) + tag->szpat, S(ref->link) - tag->szpat, f);

	return 1;
} /* linkyformat */

/*
 * process embedded links and images
 */
static int linkylinky(int image, MMIOT *f)
{
	int start = mmiottell(f);
	Cstring name;
	Footnote key, *ref;

	int status = 0;

	CREATE(name);
	memset(&key, 0, sizeof key);

	if (linkylabel(f, &name)) {
		if (peek(f, 1) == '(') {
			pull(f);
			if (linkyurl(f, image, &key))
				status = linkyformat(f, name, image, &key);
		} else {
			int goodlink, implicit_mark = mmiottell(f);

			if (eatspace(f) == '[') {
				pull(f); /* consume leading '[' */
				goodlink = linkylabel(f, &key.tag);
			} else {
				/* new markdown implicit name syntax doesn't
				 * require a second []
				 */
				mmiotseek(f, implicit_mark);
				goodlink = !(f->flags & MKD_1_COMPAT);
			}

			if (goodlink) {
				if (!S(key.tag)) {
					DELETE(key.tag);
					T(key.tag) = T(name);
					S(key.tag) = S(name);
				}

				if (ref = bsearch(&key, T(*f->footnotes),
						  S(*f->footnotes), sizeof key,
						  (stfu)__mkd_footsort))
					status =
					    linkyformat(f, name, image, ref);
			}
		}
	}

	DELETE(name);
	___mkd_freefootnote(&key);

	if (status == 0)
		mmiotseek(f, start);

	return status;
}

/* write a character to output, doing text escapes ( & -> &amp;,
 *                                          > -> &gt; < -> &lt; )
 */
static void cputc(int c, MMIOT *f)
{
	switch (c) {
	case '&':
		Qstring("&amp;", f);
		break;
	case '>':
		Qstring("&gt;", f);
		break;
	case '<':
		Qstring("&lt;", f);
		break;
	default:
		Qchar(c, f);
		break;
	}
}

/*
 * convert an email address to a string of nonsense
 */
static void mangle(char *s, int len, MMIOT *f)
{
	while (len-- > 0) {
		Qstring("&#", f);
		Qprintf(f, COINTOSS() ? "x%02x;" : "%02d;",
			*((unsigned char *)(s++)));
	}
}

/* before letting a tag through, validate against
 * DENY_A and DENY_IMG
 */
static int forbidden_tag(MMIOT *f)
{
	int c = toupper(peek(f, 1));

	if (f->flags & DENY_HTML)
		return 1;

	if (c == 'A' && (f->flags & DENY_A) && !isthisalnum(f, 2))
		return 1;
	if (c == 'I' && (f->flags & DENY_IMG) &&
	    strncasecmp(cursor(f) + 1, "MG", 2) == 0 && !isthisalnum(f, 4))
		return 1;
	return 0;
}

/* Check a string to see if it looks like a mail address
 * "looks like a mail address" means alphanumeric + some
 * specials, then a `@`, then alphanumeric + some specials,
 * but with a `.`
 */
static int maybe_address(char *p, int size)
{
	int ok = 0;

	for (; size && (isalnum(*p) || strchr("._-+*", *p)); ++p, --size)
		;

	if (!(size && *p == '@'))
		return 0;

	--size, ++p;

	if (size && *p == '.')
		return 0;

	for (; size && (isalnum(*p) || strchr("._-+", *p)); ++p, --size)
		if (*p == '.' && size > 1)
			ok = 1;

	return size ? 0 : ok;
}

/* The size-length token at cursor(f) is either a mailto:, an
 * implicit mailto:, one of the approved url protocols, or just
 * plain old text.   If it's a mailto: or an approved protocol,
 * linkify it, otherwise say "no"
 */
static int process_possible_link(MMIOT *f, int size)
{
	int address = 0;
	int mailto = 0;
	char *text = cursor(f);

	if (f->flags & DENY_A)
		return 0;

	if ((size > 7) && strncasecmp(text, "mailto:", 7) == 0) {
		/* if it says it's a mailto, it's a mailto -- who am
		 * I to second-guess the user?
		 */
		address = 1;
		mailto = 7; /* 7 is the length of "mailto:"; we need this */
	} else
		address = maybe_address(text, size);

	if (address) {
		Qstring("<a href=\"", f);
		if (!mailto) {
			/* supply a mailto: protocol if one wasn't attached */
			mangle("mailto:", 7, f);
		}
		mangle(text, size, f);
		Qstring("\">", f);
		mangle(text + mailto, size - mailto, f);
		Qstring("</a>", f);
		return 1;
	} else if (isautoprefix(text, size)) {
		printlinkyref(f, &linkt, text, size);
		Qchar('>', f);
		puturl(text, size, f, 1);
		Qstring("</a>", f);
		return 1;
	}
	return 0;
} /* process_possible_link */

/* a < may be just a regular character, the start of an embedded html
 * tag, or the start of an <automatic link>.    If it's an automatic
 * link, we also need to know if it's an email address because if it
 * is we need to mangle it in our futile attempt to cut down on the
 * spaminess of the rendered page.
 */
static int maybe_tag_or_link(MMIOT *f)
{
	int c, size;
	int maybetag = 1;

	if (f->flags & INSIDE_TAG)
		return 0;

	for (size = 0; (c = peek(f, size + 1)) != '>'; size++) {
		if (c == EOF)
			return 0;
		else if (c == '\\') {
			maybetag = 0;
			if (peek(f, size + 2) != EOF)
				size++;
		} else if (isspace(c))
			break;
		else if (!(c == '/' || isalnum(c)))
			maybetag = 0;
	}

	if (size) {
		if (maybetag ||
		    (size >= 3 && strncmp(cursor(f), "!--", 3) == 0)) {

			/* It is not a html tag unless we find the closing '>'
			 * in
			 * the same block.
			 */
			while ((c = peek(f, size + 1)) != '>')
				if (c == EOF)
					return 0;
				else
					size++;

			if (forbidden_tag(f))
				return 0;

			Qchar('<', f);
			while (((c = peek(f, 1)) != EOF) && (c != '>'))
				Qchar(pull(f), f);
			return 1;
		} else if (!isspace(c) && process_possible_link(f, size)) {
			shift(f, size + 1);
			return 1;
		}
	}

	return 0;
}

/* autolinking means that all inline html is <a href'ified>.   A
 * autolink url is alphanumerics, slashes, periods, underscores,
 * the at sign, colon, and the % character.
 */
static int maybe_autolink(MMIOT *f)
{
	register int c;
	int size;

	/* greedily scan forward for the end of a legitimate link.
	 */
	for (size = 0; (c = peek(f, size + 1)) != EOF; size++)
		if (c == '\\') {
			if (peek(f, size + 2) != EOF)
				++size;
		} else if (isspace(c) || strchr("'\"()[]{}<>`", c))
			break;

	if ((size > 1) && process_possible_link(f, size)) {
		shift(f, size);
		return 1;
	}
	return 0;
}

/* smartyquote code that's common for single and double quotes
 */
static int smartyquote(int *flags, char typeofquote, MMIOT *f)
{
	int bit = (typeofquote == 's') ? 0x01 : 0x02;

	if (bit & (*flags)) {
		if (isthisnonword(f, 1)) {
			Qprintf(f, "&r%cquo;", typeofquote);
			(*flags) &= ~bit;
			return 1;
		}
	} else if (isthisnonword(f, -1) && peek(f, 1) != EOF) {
		Qprintf(f, "&l%cquo;", typeofquote);
		(*flags) |= bit;
		return 1;
	}
	return 0;
}

static int islike(MMIOT *f, char *s)
{
	int len;
	int i;

	if (s[0] == '<') {
		if (!isthisnonword(f, -1))
			return 0;
		++s;
	}

	if (!(len = strlen(s)))
		return 0;

	if (s[len - 1] == '>') {
		if (!isthisnonword(f, len - 1))
			return 0;
		len--;
	}

	for (i = 1; i < len; i++)
		if (tolower(peek(f, i)) != s[i])
			return 0;
	return 1;
}

static struct smarties {
	char c0;
	char *pat;
	char *entity;
	int shift;
} smarties[] = {
    {'\'', "'s>", "rsquo", 0},
    {'\'', "'t>", "rsquo", 0},
    {'-', "--", "mdash", 1},
    {'-', "<->", "ndash", 0},
    {'.', "...", "hellip", 2},
    {'.', ". . .", "hellip", 4},
    {'(', "(c)", "copy", 2},
    {'(', "(r)", "reg", 2},
    {'(', "(tm)", "trade", 3},
    {'3', "<3/4>", "frac34", 2},
    {'3', "<3/4ths>", "frac34", 2},
    {'1', "<1/2>", "frac12", 2},
    {'1', "<1/4>", "frac14", 2},
    {'1', "<1/4th>", "frac14", 2},
    {'&', "&#0;", 0, 3},
};
#define NRSMART (sizeof smarties / sizeof smarties[0])

/* Smarty-pants-style chrome for quotes, -, ellipses, and (r)(c)(tm)
 */
static int smartypants(int c, int *flags, MMIOT *f)
{
	int i;

	if (f->flags & (DENY_SMARTY | INSIDE_TAG))
		return 0;

	for (i = 0; i < NRSMART; i++)
		if ((c == smarties[i].c0) && islike(f, smarties[i].pat)) {
			if (smarties[i].entity)
				Qprintf(f, "&%s;", smarties[i].entity);
			shift(f, smarties[i].shift);
			return 1;
		}

	switch (c) {
	case '<':
		return 0;
	case '\'':
		if (smartyquote(flags, 's', f))
			return 1;
		break;

	case '"':
		if (smartyquote(flags, 'd', f))
			return 1;
		break;

	case '`':
		if (peek(f, 1) == '`') {
			int j = 2;

			while ((c = peek(f, j)) != EOF) {
				if (c == '\\')
					j += 2;
				else if (c == '`')
					break;
				else if (c == '\'' && peek(f, j + 1) == '\'') {
					Qstring("&ldquo;", f);
					___mkd_reparse(cursor(f) + 1, j - 2, 0,
						       f);
					Qstring("&rdquo;", f);
					shift(f, j + 1);
					return 1;
				} else
					++j;
			}
		}
		break;
	}
	return 0;
} /* smartypants */

#define tag_text(f) (f->flags & INSIDE_TAG)

static void text(MMIOT *f)
{
	int c, j;
	int rep;
	int smartyflags = 0;

	while (1) {
		if ((f->flags & AUTOLINK) && isalpha(peek(f, 1)) &&
		    !tag_text(f))
			maybe_autolink(f);

		c = pull(f);

		if (c == EOF)
			break;

		if (smartypants(c, &smartyflags, f))
			continue;
		switch (c) {
		case 0:
			break;

		case 3:
			Qstring(tag_text(f) ? "  " : "<br/>", f);
			break;

		case '>':
			if (tag_text(f))
				Qstring("&gt;", f);
			else
				Qchar(c, f);
			break;

		case '"':
			if (tag_text(f))
				Qstring("&quot;", f);
			else
				Qchar(c, f);
			break;

		case '!':
			if (peek(f, 1) == '[') {
				pull(f);
				if (tag_text(f) || !linkylinky(1, f))
					Qstring("![", f);
			} else
				Qchar(c, f);
			break;
		case '[':
			if (tag_text(f) || !linkylinky(0, f))
				Qchar(c, f);
			break;
#if SUPERSCRIPT
		/* A^B -> A<sup>B</sup> */
		case '^':
			if ((f->flags & (STRICT | INSIDE_TAG)) ||
			    isthisspace(f, -1) || isthisspace(f, 1))
				Qchar(c, f);
			else {
				char *sup = cursor(f);
				int len = 0;
				Qstring("<sup>", f);
				while (!isthisspace(f, 1 + len)) {
					++len;
				}
				shift(f, len);
				___mkd_reparse(sup, len, 0, f);
				Qstring("</sup>", f);
			}
			break;
#endif
		case '_':
#if RELAXED_EMPHASIS
			/* Underscores don't count if they're in the middle of a
			 * word */
			if (!(f->flags & STRICT) && isthisalnum(f, -1) &&
			    isthisalnum(f, 1)) {
				Qchar(c, f);
				break;
			}
#endif
		case '*':
			/* Underscores & stars don't count if they're out in the
			 * middle
			 * of whitespace */
			if (isthisspace(f, -1) && isthisspace(f, 1)) {
				Qchar(c, f);
				break;
			}
			/* else fall into the regular old emphasis case */
			if (tag_text(f))
				Qchar(c, f);
			else {
				for (rep = 1; peek(f, 1) == c; pull(f))
					++rep;
				Qem(f, c, rep);
			}
			break;

		case '`':
			if (tag_text(f) || !iscodeblock(f))
				Qchar(c, f);
			else {
				Qstring("<code>", f);
				if (peek(f, 1) == '`') {
					pull(f);
					code(2, f);
				} else
					code(1, f);
				Qstring("</code>", f);
			}
			break;

		case '\\':
			switch (c = pull(f)) {
			case '&':
				Qstring("&amp;", f);
				break;
			case '<':
				Qstring("&lt;", f);
				break;
			case '>':
			case '#':
			case '.':
			case '-':
			case '+':
			case '{':
			case '}':
			case ']':
			case '!':
			case '[':
			case '*':
			case '_':
			case '\\':
			case '(':
			case ')':
			case '`':
				Qchar(c, f);
				break;
			default:
				Qchar('\\', f);
				if (c != EOF)
					shift(f, -1);
				break;
			}
			break;

		case '<':
			if (!maybe_tag_or_link(f))
				Qstring("&lt;", f);
			break;

		case '&':
			j = (peek(f, 1) == '#') ? 2 : 1;
			while (isthisalnum(f, j))
				++j;

			if (peek(f, j) != ';')
				Qstring("&amp;", f);
			else
				Qchar(c, f);
			break;

		default:
			Qchar(c, f);
			break;
		}
	}
	/* truncate the input string after we've finished processing it */
	S(f->in) = f->isp = 0;
} /* text */

static int iscodeblock(MMIOT *f)
{
	int i = 1, single = 1, c;

	if (peek(f, i) == '`') {
		single = 0;
		i++;
	}
	while ((c = peek(f, i)) != EOF) {
		if ((c == '`') && (single || peek(f, i + 1) == '`'))
			return 1;
		else if (c == '\\')
			i++;
		i++;
	}
	return 0;
}

static int endofcode(int escape, int offset, MMIOT *f)
{
	switch (escape) {
	case 2:
		if (peek(f, offset + 1) == '`') {
			shift(f, 1);
		case 1:
			shift(f, offset);
			return 1;
		}
	default:
		return 0;
	}
}

/* the only characters that have special meaning in a code block are
 * `<' and `&' , which are /always/ expanded to &lt; and &amp;
 */
static void code(int escape, MMIOT *f)
{
	int c;

	if (escape && (peek(f, 1) == ' '))
		shift(f, 1);

	while ((c = pull(f)) != EOF) {
		switch (c) {
		case ' ':
			if (peek(f, 1) == '`' && endofcode(escape, 1, f))
				return;
			Qchar(c, f);
			break;

		case '`':
			if (endofcode(escape, 0, f))
				return;
			Qchar(c, f);
			break;

		case 003: /* ^C; expand back to 2 spaces */
			Qstring("  ", f);
			break;

		case '\\':
			cputc(c, f);
			if (peek(f, 1) == '>' || (c = pull(f)) == EOF)
				break;

		default:
			cputc(c, f);
			break;
		}
	}
} /* code */

/* print a header block
 */
static void printheader(Paragraph *pp, MMIOT *f)
{
	Qprintf(f, "<h%d", pp->hnumber);
	if (f->flags & TOC) {
		Qprintf(f, " id=\"", pp->hnumber);
		mkd_string_to_anchor(T(pp->text->text), S(pp->text->text),
				     Qchar, f);
		Qchar('"', f);
	}
	Qchar('>', f);
	push(T(pp->text->text), S(pp->text->text), f);
	text(f);
	Qprintf(f, "</h%d>", pp->hnumber);
}

enum e_alignments { a_NONE, a_CENTER, a_LEFT, a_RIGHT };

static char *alignments[] = {"", " align=\"center\"", " align=\"left\"",
			     " align=\"right\""};

typedef STRING(int) Istring;

static int splat(Line *p, char *block, Istring align, int force, MMIOT *f)
{
	int first, idx = 0, colno = 0;

	Qstring("<tr>\n", f);
	while (idx < S(p->text)) {
		first = idx;
		if (force && (colno >= S(align) - 1))
			idx = S(p->text);
		else
			while ((idx < S(p->text)) && (T(p->text)[idx] != '|'))
				++idx;

		Qprintf(
		    f, "<%s%s>", block,
		    alignments[(colno < S(align)) ? T(align)[colno] : a_NONE]);
		___mkd_reparse(T(p->text) + first, idx - first, 0, f);
		Qprintf(f, "</%s>\n", block);
		idx++;
		colno++;
	}
	if (force)
		while (colno < S(align)) {
			Qprintf(f, "<%s></%s>\n", block, block);
			++colno;
		}
	Qstring("</tr>\n", f);
	return colno;
}

static int printtable(Paragraph *pp, MMIOT *f)
{
	/* header, dashes, then lines of content */

	Line *hdr, *dash, *body;
	Istring align;
	int start;
	int hcols;
	char *p;

	if (!(pp->text && pp->text->next))
		return 0;

	hdr = pp->text;
	dash = hdr->next;
	body = dash->next;

	/* first figure out cell alignments */

	CREATE(align);

	for (p = T(dash->text), start = 0; start < S(dash->text);) {
		char first, last;
		int end;

		last = first = 0;
		for (end = start; (end < S(dash->text)) && p[end] != '|';
		     ++end) {
			if (!isspace(p[end])) {
				if (!first)
					first = p[end];
				last = p[end];
			}
		}
		EXPAND(align) = (first == ':')
				    ? ((last == ':') ? a_CENTER : a_LEFT)
				    : ((last == ':') ? a_RIGHT : a_NONE);
		start = 1 + end;
	}

	Qstring("<table>\n", f);
	Qstring("<thead>\n", f);
	hcols = splat(hdr, "th", align, 0, f);
	Qstring("</thead>\n", f);

	if (hcols < S(align))
		S(align) = hcols;
	else
		while (hcols > S(align))
			EXPAND(align) = a_NONE;

	Qstring("<tbody>\n", f);
	for (; body; body = body->next)
		splat(body, "td", align, 1, f);
	Qstring("</tbody>\n", f);
	Qstring("</table>\n", f);

	DELETE(align);
	return 1;
}

static int printblock(Paragraph *pp, MMIOT *f)
{
	Line *t = pp->text;
	static char *Begin[] = {"", "<p>", "<center>"};
	static char *End[] = {"", "</p>", "</center>"};

	while (t) {
		if (S(t->text)) {
			if (t->next && S(t->text) > 2 &&
			    T(t->text)[S(t->text) - 2] == ' ' &&
			    T(t->text)[S(t->text) - 1] == ' ') {
				push(T(t->text), S(t->text) - 2, f);
				push("\003\n", 2, f);
			} else {
				___mkd_tidy(&t->text);
				push(T(t->text), S(t->text), f);
				if (t->next)
					push("\n", 1, f);
			}
		}
		t = t->next;
	}
	Qstring(Begin[pp->align], f);
	text(f);
	Qstring(End[pp->align], f);
	return 1;
}

static void printcode(Line *t, MMIOT *f)
{
	int blanks;

	for (blanks = 0; t; t = t->next)
		if (S(t->text) > t->dle) {
			while (blanks) {
				push("\n", 1, f);
				--blanks;
			}
			push(T(t->text), S(t->text), f);
			push("\n", 1, f);
		} else
			blanks++;

	Qstring("<pre><code>", f);
	code(0, f);
	Qstring("</code></pre>", f);
}

static void printhtml(Line *t, MMIOT *f)
{
	int blanks;

	for (blanks = 0; t; t = t->next)
		if (S(t->text)) {
			for (; blanks; --blanks)
				Qchar('\n', f);

			Qwrite(T(t->text), S(t->text), f);
			Qchar('\n', f);
		} else
			blanks++;
}

static void htmlify(Paragraph *p, char *block, char *arguments, MMIOT *f)
{
	___mkd_emblock(f);
	if (block)
		Qprintf(f, arguments ? "<%s %s>" : "<%s>", block, arguments);
	___mkd_emblock(f);

	while ((p = display(p, f))) {
		___mkd_emblock(f);
		Qstring("\n\n", f);
	}

	if (block)
		Qprintf(f, "</%s>", block);
	___mkd_emblock(f);
}

#if DL_TAG_EXTENSION
static void definitionlist(Paragraph *p, MMIOT *f)
{
	Line *tag;

	if (p) {
		Qstring("<dl>\n", f);

		for (; p; p = p->next) {
			for (tag = p->text; tag; tag = tag->next) {
				Qstring("<dt>", f);
				___mkd_reparse(T(tag->text), S(tag->text), 0,
					       f);
				Qstring("</dt>\n", f);
			}

			htmlify(p->down, "dd", p->ident, f);
			Qchar('\n', f);
		}

		Qstring("</dl>", f);
	}
}
#endif

static void listdisplay(int typ, Paragraph *p, MMIOT *f)
{
	if (p) {
		Qprintf(f, "<%cl", (typ == UL) ? 'u' : 'o');
		if (typ == AL)
			Qprintf(f, " type=a");
		Qprintf(f, ">\n");

		for (; p; p = p->next) {
			htmlify(p->down, "li", p->ident, f);
			Qchar('\n', f);
		}

		Qprintf(f, "</%cl>\n", (typ == UL) ? 'u' : 'o');
	}
}

/* dump out a Paragraph in the desired manner
 */
static Paragraph *display(Paragraph *p, MMIOT *f)
{
	if (!p)
		return 0;

	switch (p->typ) {
	case STYLE:
	case WHITESPACE:
		break;

	case HTML:
		printhtml(p->text, f);
		break;

	case CODE:
		printcode(p->text, f);
		break;

	case QUOTE:
		htmlify(p->down, p->ident ? "div" : "blockquote", p->ident, f);
		break;

	case UL:
	case OL:
	case AL:
		listdisplay(p->typ, p->down, f);
		break;

#if DL_TAG_EXTENSION
	case DL:
		definitionlist(p->down, f);
		break;
#endif

	case HR:
		Qstring("<hr />", f);
		break;

	case HDR:
		printheader(p, f);
		break;

	case TABLE:
		printtable(p, f);
		break;

	case SOURCE:
		htmlify(p->down, 0, 0, f);
		break;

	default:
		printblock(p, f);
		break;
	}
	return p->next;
}

/* return a pointer to the compiled markdown
 * document.
 */
int mkd_document(Document *p, char **res)
{
	if (p && p->compiled) {
		if (!p->html) {
			htmlify(p->code, 0, 0, p->ctx);
			p->html = 1;
		}

		*res = T(p->ctx->out);
		return S(p->ctx->out);
	}
	return EOF;
}