summaryrefslogtreecommitdiffstats
path: root/contrib/groff/src/devices/grohtml/html-chars.h
blob: f58f8dcc20a84631008cb4508aa278387c42db5e (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
// -*- C++ -*-
/* Copyright (C) 2000, 2001 Free Software Foundation, Inc.
 *
 *  Gaius Mulley (gaius@glam.ac.uk) wrote output.cc
 *  but it owes a huge amount of ideas and raw code from
 *  James Clark (jjc@jclark.com) grops/ps.cc.
 *
 *  html-chars.h
 *
 *  provides a diacritical character combination table for html
 */



struct diacritical_desc {
  char *mark;
  char *second_troff_char;
  char  translation;
};


static struct diacritical_desc diacritical_table[] = {
  { "ad"   , "aeiouyAEIOU" , ':'    , },      /* */
  { "ac"   , "cC"          , ','    , },      /* cedilla */
  { "aa"   , "aeiouyAEIOU" , '\''   , },      /* acute */
  { NULL   , NULL          , (char)0, },
};
OpenPOWER on IntegriCloud