-
Notifications
You must be signed in to change notification settings - Fork 35
/
nroff_smartypants.c
484 lines (417 loc) · 11.2 KB
/
nroff_smartypants.c
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
/* $Id$ */
/*
* Copyright (c) 2008, Natacha Porté
* Copyright (c) 2011, Vicent Martí
* Copyright (c) 2014, Xavier Mendez, Devin Torres and the Hoedown authors
* Copyright (c) 2016, Kristaps Dzonsons
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#if HAVE_SYS_QUEUE
# include <sys/queue.h>
#endif
#include <assert.h>
#include <ctype.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lowdown.h"
#include "extern.h"
/*
* Remember which kind of quote we're currently within: whether we've
* already printed an "opening" single or double quote.
*/
struct sm_dat {
int in_squote;
int in_dquote;
};
typedef size_t (*sm_cb_ptr)(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_amp(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_backtick(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_dash(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_dot(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_dquote(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_esc(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_number(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_parens(hbuf *, struct sm_dat *,
char, const char *, size_t);
static size_t sm_cb_squote(hbuf *, struct sm_dat *,
char, const char *, size_t);
static sm_cb_ptr sm_cb_ptrs[] = {
NULL, /* 0 */
sm_cb_dash, /* 1 */
sm_cb_parens, /* 2 */
sm_cb_squote, /* 3 */
sm_cb_dquote, /* 4 */
sm_cb_amp, /* 5 */
sm_cb_esc, /* 6 */
sm_cb_number, /* 7 */
sm_cb_dot, /* 8 */
sm_cb_backtick, /* 9 */
NULL, /* 10 */
};
static const int sm_cb_chars[UINT8_MAX+1] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* nul -- si */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* dle -- us */
0, 0, 4, 0, 0, 0, 5, 3, 2, 0, 0, 0, 0, 1, 8, 0, /* sp -- / */
0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0 -- ? */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* @ -- O */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, /* P -- _ */
9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* ` -- o */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* p -- del */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
static int
word_boundary(char c)
{
return c == 0 || isspace(c) || ispunct(c);
}
/*
* If 'text' begins with any kind of single quote (e.g. "'" or "'"
* etc.), returns the length of the sequence of characters that makes up
* the single- quote. Otherwise, returns zero.
*/
static size_t
squote_len(const char *text, size_t size)
{
const char **p;
size_t len;
static const char *single_quote_list[] = {
"'", "'", "'", "'", NULL
};
for (p = single_quote_list; *p; ++p) {
len = strlen(*p);
if (size >= len && memcmp(text, *p, len) == 0)
return len;
}
return 0;
}
/*
* Converts " or ' at very beginning or end of a word to left or right
* quote.
*/
static int
sm_quotes(hbuf *ob, char previous_char,
char next_char, char quote, int *is_open)
{
if (*is_open && !word_boundary(next_char))
return 0;
if (!(*is_open) && !word_boundary(previous_char))
return 0;
assert('d' == quote || 's' == quote);
if ('d' == quote)
hbuf_puts(ob, *is_open ? "\\(rq" : "\\(lq");
else
hbuf_puts(ob, *is_open ? "\\(cq" : "\\(oq");
*is_open = !(*is_open);
return 1;
}
/*
* Converts ' to left or right single quote; but the initial ' might be
* in different forms, e.g. ' or ' or '.
* 'squote_text' points to the original single quote, and 'squote_size'
* is its length. "text" points at the last character of the
* single-quote, e.g. "'" or ";".
*/
static size_t
sm_squote(hbuf *ob, struct sm_dat *smrt, char previous_char,
const char *text, size_t size,
const char *squote_text, size_t squote_size)
{
char t1, t2, next_char;
size_t next_squote_len;
if (size >= 2) {
t1 = tolower((int)text[1]);
next_squote_len = squote_len(text+1, size-1);
/* convert '' to “ or ” */
if (next_squote_len > 0) {
next_char = (size > 1+next_squote_len) ?
text[1+next_squote_len] : 0;
if (sm_quotes(ob, previous_char,
next_char, 'd', &smrt->in_dquote))
return next_squote_len;
}
/* Tom's, isn't, I'm, I'd */
if ((t1 == 's' || t1 == 't' || t1 == 'm' ||
t1 == 'd') && (size == 3 ||
word_boundary(text[2]))) {
HBUF_PUTSL(ob, "\\(cq");
return 0;
}
/* you're, you'll, you've */
if (size >= 3) {
t2 = tolower((int)text[2]);
if (((t1 == 'r' && t2 == 'e') ||
(t1 == 'l' && t2 == 'l') ||
(t1 == 'v' && t2 == 'e')) &&
(size == 4 || word_boundary(text[3]))) {
HBUF_PUTSL(ob, "\\(cq");
return 0;
}
}
}
if (sm_quotes(ob, previous_char,
size > 0 ? text[1] : 0, 's', &smrt->in_squote))
return 0;
hbuf_put(ob, squote_text, squote_size);
return 0;
}
/*
* Converts ' to left or right single quote.
*/
static size_t
sm_cb_squote(hbuf *ob, struct sm_dat *smrt, char previous_char, const char *text, size_t size)
{
return sm_squote(ob, smrt,
previous_char, text, size, text, 1);
}
/*
* Converts (c), (r), (tm).
*/
static size_t
sm_cb_parens(hbuf *ob, struct sm_dat *smrt, char previous_char, const char *text, size_t size)
{
char t1, t2;
if (size >= 3) {
t1 = tolower((int)text[1]);
t2 = tolower((int)text[2]);
if (t1 == 'c' && t2 == ')') {
HBUF_PUTSL(ob, "\\(co");
return 2;
}
if (t1 == 'r' && t2 == ')') {
HBUF_PUTSL(ob, "\\(rg");
return 2;
}
if (size >= 4 && t1 == 't' &&
t2 == 'm' && text[3] == ')') {
HBUF_PUTSL(ob, "\\(tm");
return 3;
}
}
hbuf_putc(ob, text[0]);
return 0;
}
/*
* Converts "--" to em-dash, etc.
*/
static size_t
sm_cb_dash(hbuf *ob, struct sm_dat *smrt, char previous_char, const char *text, size_t size)
{
if (size >= 3 && text[1] == '-' && text[2] == '-') {
HBUF_PUTSL(ob, "\\(em");
return 2;
}
if (size >= 2 && text[1] == '-') {
HBUF_PUTSL(ob, "\\(en");
return 1;
}
hbuf_putc(ob, text[0]);
return 0;
}
/*
* Converts " etc.
*/
static size_t
sm_cb_amp(hbuf *ob, struct sm_dat *smrt,
char previous_char, const char *text, size_t size)
{
size_t len;
if (size >= 6 && memcmp(text, """, 6) == 0) {
if (sm_quotes(ob, previous_char,
size >= 7 ? text[6] : 0, 'd', &smrt->in_dquote))
return 5;
}
len = squote_len(text, size);
if (len > 0)
return (len-1) + sm_squote(ob, smrt,
previous_char, text+(len-1),
size-(len-1), text, len);
if (size >= 4 && memcmp(text, "�", 4) == 0)
return 3;
hbuf_putc(ob, '&');
return 0;
}
/*
* A code span (within \f[CR]) shouldn't be escaped.
*/
static size_t
sm_cb_esc(hbuf *ob, struct sm_dat *smrt,
char previous_char, const char *text, size_t size)
{
size_t i = 0;
const char *cp;
if ((size >= 3 && 0 == memcmp(text + 1, "f[C", 3))) {
i = 3;
hbuf_put(ob, text, i);
/* FIXME: check size - i >= 3 */
cp = memmem(text + i, size - i, "\\f[", 3);
assert(NULL != cp);
hbuf_put(ob, text + i, cp - (text + i));
i += cp - (text + i) - 1;
} else
hbuf_putc(ob, text[0]);
return i;
}
/*
* See if we're in a code block (DS/DE) and don't smartypants anything
* inside of that.
*/
static size_t
sm_cb_dot(hbuf *ob, struct sm_dat *smrt,
char previous_char, const char *text, size_t size)
{
size_t i = 0;
const char *cp;
if ((0 == previous_char || '\n' == previous_char) &&
(size >= 6 && 0 == memcmp(text + 1, "ft CR\n", 6))) {
i = 6;
hbuf_put(ob, text, i);
/* FIXME: check size - i >= 4 */
cp = memmem(text + i, size - i, "\n.ft\n", 4);
assert(NULL != cp);
hbuf_put(ob, text + i, cp - (text + i));
i += cp - (text + i) - 1;
} else
hbuf_putc(ob, text[0]);
return i;
}
/*
* Converts `` to opening double quote.
*/
static size_t
sm_cb_backtick(hbuf *ob, struct sm_dat *smrt,
char previous_char, const char *text, size_t size)
{
if (size >= 2 && text[1] == '`') {
if (sm_quotes(ob, previous_char,
size >= 3 ? text[2] : 0, 'd', &smrt->in_dquote))
return 1;
}
hbuf_putc(ob, text[0]);
return 0;
}
/*
* Converts 1/2, 1/4, 3/4.
*/
static size_t
sm_cb_number(hbuf *ob, struct sm_dat *smrt,
char previous_char, const char *text, size_t size)
{
if (word_boundary(previous_char) && size >= 3) {
/* 1/2 */
if (text[0] == '1' &&
text[1] == '/' && text[2] == '2') {
if (size == 3 || word_boundary(text[3])) {
HBUF_PUTSL(ob, "\\[12]");
return 2;
}
}
/* 1/4 */
if (text[0] == '1' &&
text[1] == '/' && text[2] == '4') {
if (size == 3 || word_boundary(text[3]) ||
(size >= 5 &&
tolower((int)text[3]) == 't' &&
tolower((int)text[4]) == 'h')) {
HBUF_PUTSL(ob, "\\[14]");
return 2;
}
}
/* 3/4 */
if (text[0] == '3' &&
text[1] == '/' && text[2] == '4') {
if (size == 3 || word_boundary(text[3]) ||
(size >= 6 &&
tolower((int)text[3]) == 't' &&
tolower((int)text[4]) == 'h' &&
tolower((int)text[5]) == 's')) {
HBUF_PUTSL(ob, "\\[34]");
return 2;
}
}
}
hbuf_putc(ob, text[0]);
return 0;
}
/*
* Converts " to left or right double quote.
*/
static size_t
sm_cb_dquote(hbuf *ob, struct sm_dat *smrt,
char previous_char, const char *text, size_t size)
{
if ( ! sm_quotes(ob, previous_char,
size > 0 ? text[1] : 0, 'd', &smrt->in_dquote))
HBUF_PUTSL(ob, "\\(dq");
return 0;
}
/*
* Process a nroff snippet using SmartyPants for smart punctuation.
*/
void
lowdown_nroff_smrt(hbuf *ob, const char *text, size_t size)
{
size_t i, org, bscan;
struct sm_dat smrt;
char action = 0;
if (NULL == text || 0 == size)
return;
memset(&smrt, 0, sizeof(struct sm_dat));
hbuf_grow(ob, size);
for (i = 0; i < size; ++i) {
action = 0;
org = i;
while (i < size &&
(action = sm_cb_chars[(unsigned char)text[i]]) == 0)
i++;
if (i > org)
hbuf_put(ob, text + org, i - org);
/* Don't convert quotes on macro lines. */
if (i < size &&
('"' == text[i] || '\'' == text[i])) {
assert('\n' != text[i]);
for (bscan = i; bscan > 0; bscan--)
if ('\n' == text[bscan]) {
bscan++;
break;
}
assert(bscan <= i);
if ('.' == text[bscan]) {
hbuf_putc(ob, text[i]);
continue;
}
}
if (i < size)
i += sm_cb_ptrs[(int)action](ob,
&smrt, i ? text[i - 1] : 0,
text + i, size - i);
}
}