1 /*@ Configurable stuff */
8 // Maximum characters we want in a line
9 #define MAX_LINE_LENGTH 60
11 // Font size increment <big> = +2
12 #define SIZE_INCREMENT 2
14 // How many pixels off center do we allow
15 #define CENTER_TOLERANCE 2
17 // If simple anchor is set we use this
18 #define ANCHOR_TEMPLATE "heading"
20 #define STYLE_VERTICAL_SPACE "1em"
22 // All character entities above this are either encoded by their glyph names
23 // or if there is no name then we use &#nnn;
24 #define UNICODE_DESC_START 0x80
26 #endif // _HTML_CONFIG_H