config.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. <?php
  2. // PAGING
  3. $this->mirrorMargins = 0; // alias = $useOddEven
  4. $this->restoreBlockPagebreaks = false;
  5. $this->forcePortraitMargins = false;
  6. $this->displayDefaultOrientation = false;
  7. // PAGE NUMBERING
  8. // Page numbering - Conditional Text
  9. $this->pagenumPrefix;
  10. $this->pagenumSuffix;
  11. $this->nbpgPrefix;
  12. $this->nbpgSuffix;
  13. // FONTS LANGUAGES & CHARACTER SETS
  14. // Allows automatic character set conversion if "charset=xxx" detected in html header (WriteHTML() )
  15. $this->allow_charset_conversion = true;
  16. $this->biDirectional=false; // automatically determine BIDI text in LTR page
  17. // If using a CJK codepage with only CJK/ASCII or embedded characters, this will prevent loading of Unicode fonts - makes smaller files
  18. $this->use_CJK_only = false;
  19. $this->autoFontGroupSize = 2; // 1: individual words are spanned; 2: words+; 3: as big chunks as possible.
  20. $this->useLang = true; // Default changed in mPDF 4.0
  21. $this->disableMultilingualJustify = true; // Disables If more than one language on a line using different text-justification
  22. // e.g. Chinese (character) and RTL (word)
  23. $this->useSubstitutionsMB = false; // mPDF 4.2 Substitute missing characters in UTF-8(multibyte) documents - from core fonts
  24. $this->falseBoldWeight = 5; // mPDF 4.2 Weight for bold text when using an artificial (outline) bold; value 0 (off) - 10 (rec. max)
  25. // CONFIGURATION
  26. // This will force all fonts to be substituted with Arial(Helvetica) Times or Courier when using codepage win-1252 - makes smaller files
  27. $this->useOnlyCoreFonts = false; // alias = $use_embeddedfonts_1252
  28. $this->allow_output_buffering = false;
  29. $this->collapseBlockMargins = true; // mPDF 4.2 Allows top and bottom margins to collapse between block elements
  30. $this->progressBar = 0; // mPDF 4.2 Shows progress-bars whilst generating file 0 off, 1 simple, 2 advanced
  31. // Automatically correct for tags where HTML specifies optional end tags e.g. P,LI,DD,TD
  32. // If you are confident input html is valid XHTML, turning this off may make it more reliable(?)
  33. $this->allow_html_optional_endtags = true;
  34. $this->ignore_invalid_utf8 = false;
  35. $this->text_input_as_HTML = false; // Converts all entities in Text inputs to UTF-8 before encoding
  36. $this->useGraphs = false;
  37. // mPDF 4.2 - When writing a block element with position:fixed and overflow:auto, mPDF scales it down to fit in the space
  38. // by repeatedly rewriting it and making adjustments. These values give the adjustments used, depending how far out
  39. // the previous guess was. The higher the number, the quicker it will finish, but the less accurate the fit may be.
  40. // FPR1 is for coarse adjustments, and FPR4 for fine adjustments when it is getting closer.
  41. $this->incrementFPR1 = 10;
  42. $this->incrementFPR2 = 20;
  43. $this->incrementFPR3 = 30;
  44. $this->incrementFPR4 = 50;
  45. // DEBUGGING & DEVELOPERS
  46. $this->showStats = false;
  47. $this->debug = false;
  48. $this->showImageErrors = false; // false/true;
  49. $this->table_error_report = false; // Die and report error if table is too wide to contain whole words
  50. $this->table_error_report_param = ''; // Parameter which can be passed to show in error report i.e. chapter number being processed//
  51. // ANNOTATIONS
  52. $this->title2annots = false;
  53. $this->annotSize = 0.5; // default mm for Adobe annotations - nominal
  54. $this->annotMargin; // default position for Annotations
  55. $this->annotOpacity = 0.5; // default opacity for Annotations
  56. // BOOKMARKS
  57. $this->anchor2Bookmark = 0; // makes <a name=""> into a bookmark as well as internal link target; 1 = just name; 2 = name (p.34)
  58. // CSS & STYLES
  59. $this->disablePrintCSS; // prevents CSS stylesheets marked as media="print" to be ignored
  60. $this->rtlCSS = 2; // RTL: 0 overrides defaultCSS; 1 overrides stylesheets; 2 overrides inline styles - TEXT-ALIGN left => right etc.
  61. // when directionality is set to rtl
  62. // PAGE HEADERS & FOOTERS
  63. $this->forcePortraitHeaders = false;
  64. // Values used if simple FOOTER/HEADER given i.e. not array
  65. $this->defaultheaderfontsize = 8; // pt
  66. $this->defaultheaderfontstyle = 'BI'; // '', or 'B' or 'I' or 'BI'
  67. $this->defaultheaderline = 1; // 1 or 0 - line under the header
  68. $this->defaultfooterfontsize = 8; // pt
  69. $this->defaultfooterfontstyle = 'BI'; // '', or 'B' or 'I' or 'BI'
  70. $this->defaultfooterline = 1; // 1 or 0 - line over the footer
  71. $this->header_line_spacing = 0.25; // spacing between bottom of header and line (if present) - function of fontsize
  72. $this->footer_line_spacing = 0.25; // spacing between bottom of header and line (if present) - function of fontsize
  73. // If 'pad' margin-top sets fixed distance in mm (padding) between bottom of header and top of text.
  74. // If 'stretch' margin-top sets a minimum distance in mm between top of page and top of text, which expands if header is too large to fit.
  75. $this->setAutoTopMargin = false;
  76. $this->setAutoBottomMargin = false;
  77. $this->autoMarginPadding = 2; // distance in mm used as padding if 'stretch' mode is used
  78. // TABLES
  79. $this->ignore_table_percents = false;
  80. $this->ignore_table_widths = false;
  81. $this->keep_table_proportions = false; // If table width set > page width, force resizing but keep relative sizes
  82. // Also forces respect of cell widths set by %
  83. $this->shrink_tables_to_fit = 1.4; // automatically reduce fontsize in table if words would have to split ( not in CJK)
  84. // 0 or false to disable; value (if set) gives maximum factor to reduce fontsize
  85. $this->use_kwt = false;
  86. // IMAGES
  87. $this->img_dpi = 96; // Default dpi to output images if size not defined
  88. // TEXT SPACING & JUSTIFICATION
  89. $this->tabSpaces = 8; // Number of spaces to replace for a TAB in <pre> sections
  90. // Notepad uses 6, HTML specification recommends 8
  91. $this->jSWord = 0.4; // Proportion (/1) of space (when justifying margins) to allocate to Word vs. Character
  92. $this->jSmaxChar = 2; // Maximum spacing to allocate to character spacing. (0 = no maximum)
  93. $this->jSmaxCharLast = 1; // Maximum character spacing allowed (carried over) when finishing a last line
  94. $this->jSmaxWordLast = 2; // Maximum word spacing allowed (carried over) when finishing a last line
  95. $this->orphansAllowed = 5; // No of SUP or SUB characters to include on line to avoid leaving e.g. end of line//<sup>32</sup>
  96. $this->normalLineheight = 1.33; // mPDF 4.2 - Value used for line-height when CSS specified as 'normal' (default)
  97. // HYPHENATION
  98. $this->hyphenate = false;
  99. $this->hyphenateTables = false;
  100. $this->SHYlang = "en"; // Should be one of: 'en','de','es','fi','fr','it','nl','pl','ru','sv'
  101. $this->SHYleftmin = 2;
  102. $this->SHYrightmin = 2;
  103. $this->SHYcharmin = 2;
  104. $this->SHYcharmax = 10;
  105. // COLUMNS
  106. $this->keepColumns = false; // Set to go to the second column only when the first is full of text etc.
  107. $this->max_colH_correction = 1.15; // Maximum ratio to adjust column height when justifying - too large a value can give ugly results
  108. $this->ColGap=5;
  109. // LISTS
  110. $this->list_align_style = 'R'; // Determines alignment of numbers in numbered lists
  111. $this->list_indent_first_level = 0; // 1/0 yex/no to indent first level of list
  112. $this->list_number_suffix = '.'; // Content to follow a numbered list marker e.g. '.' gives 1. or IV.; ')' gives 1) or a)
  113. // WATERMARKS
  114. $this->showWatermarkText = 0; // alias = $TopicIsUnvalidated
  115. $this->showWatermarkImage = 0;
  116. $this->watermarkText = ''; // alias = $UnvalidatedText
  117. $this->watermarkImage = '';
  118. $this->watermark_font = '';
  119. $this->watermarkTextAlpha = 0.2;
  120. $this->watermarkImageAlpha = 0.2;
  121. // BORDERS
  122. $this->autoPadding = false; // Automatically increases padding in block elements with border-radius set - if required
  123. // FORMS
  124. $this->textarea_lineheight = 1.25;
  125. // NOT USED???
  126. $this->formBgColor = 'white';
  127. $this->formBgColorSmall = '#DDDDFF'; // Color used for background of form fields if reduced in size (so border disappears)
  128. //////////////////////////////////////////////
  129. // Default values if no style sheet offered (cf. http://www.w3.org/TR/CSS21/sample.html)
  130. $this->defaultCSS = array(
  131. 'BODY' => array(
  132. 'FONT-FAMILY' => 'serif',
  133. 'FONT-SIZE' => '11pt',
  134. 'TEXT-ALIGN' => 'left',
  135. 'TEXT-INDENT' => '0pt', /* Moved from mPDF 4.0 */
  136. 'LINE-HEIGHT' => 'normal', /* mPDF 4.2 changed from 1.33 */
  137. 'MARGIN-COLLAPSE' => 'collapse', /* Custom property to collapse top/bottom margins at top/bottom of page - ignored in tables/lists */
  138. ),
  139. 'P' => array(
  140. /* 'TEXT-ALIGN' => 'left', Removed mPDF 4.0 */
  141. 'MARGIN' => '1.12em 0',
  142. ),
  143. 'H1' => array(
  144. 'FONT-SIZE' => '2em',
  145. 'FONT-WEIGHT' => 'bold',
  146. 'MARGIN' => '0.67em 0',
  147. 'PAGE-BREAK-AFTER' => 'avoid',
  148. ),
  149. 'H2' => array(
  150. 'FONT-SIZE' => '1.5em',
  151. 'FONT-WEIGHT' => 'bold',
  152. 'MARGIN' => '0.75em 0',
  153. 'PAGE-BREAK-AFTER' => 'avoid',
  154. ),
  155. 'H3' => array(
  156. 'FONT-SIZE' => '1.17em',
  157. 'FONT-WEIGHT' => 'bold',
  158. 'MARGIN' => '0.83em 0',
  159. 'PAGE-BREAK-AFTER' => 'avoid',
  160. ),
  161. 'H4' => array(
  162. 'FONT-WEIGHT' => 'bold',
  163. 'MARGIN' => '1.12em 0',
  164. 'PAGE-BREAK-AFTER' => 'avoid',
  165. ),
  166. 'H5' => array(
  167. 'FONT-SIZE' => '0.83em',
  168. 'FONT-WEIGHT' => 'bold',
  169. 'MARGIN' => '1.5em 0',
  170. 'PAGE-BREAK-AFTER' => 'avoid',
  171. ),
  172. 'H6' => array(
  173. 'FONT-SIZE' => '0.75em',
  174. 'FONT-WEIGHT' => 'bold',
  175. 'MARGIN' => '1.67em 0',
  176. 'PAGE-BREAK-AFTER' => 'avoid',
  177. ),
  178. 'HR' => array(
  179. 'COLOR' => '#888888',
  180. 'TEXT-ALIGN' => 'center',
  181. 'WIDTH' => '100%',
  182. 'HEIGHT' => '0.2mm',
  183. 'MARGIN-TOP' => '0.83em',
  184. 'MARGIN-BOTTOM' => '0.83em',
  185. ),
  186. 'PRE' => array(
  187. 'MARGIN' => '0.83em 0',
  188. 'FONT-FAMILY' => 'monospace',
  189. ),
  190. 'S' => array(
  191. 'TEXT-DECORATION' => 'line-through',
  192. ),
  193. 'STRIKE' => array(
  194. 'TEXT-DECORATION' => 'line-through',
  195. ),
  196. 'DEL' => array(
  197. 'TEXT-DECORATION' => 'line-through',
  198. ),
  199. 'SUB' => array(
  200. 'VERTICAL-ALIGN' => 'sub',
  201. 'FONT-SIZE' => '55%', /* Recommended 0.83em */
  202. ),
  203. 'SUP' => array(
  204. 'VERTICAL-ALIGN' => 'super',
  205. 'FONT-SIZE' => '55%', /* Recommended 0.83em */
  206. ),
  207. 'U' => array(
  208. 'TEXT-DECORATION' => 'underline',
  209. ),
  210. 'INS' => array(
  211. 'TEXT-DECORATION' => 'underline',
  212. ),
  213. 'B' => array(
  214. 'FONT-WEIGHT' => 'bold',
  215. ),
  216. 'STRONG' => array(
  217. 'FONT-WEIGHT' => 'bold',
  218. ),
  219. 'I' => array(
  220. 'FONT-STYLE' => 'italic',
  221. ),
  222. 'CITE' => array(
  223. 'FONT-STYLE' => 'italic',
  224. ),
  225. 'Q' => array(
  226. 'FONT-STYLE' => 'italic',
  227. ),
  228. 'EM' => array(
  229. 'FONT-STYLE' => 'italic',
  230. ),
  231. 'VAR' => array(
  232. 'FONT-STYLE' => 'italic',
  233. ),
  234. 'SAMP' => array(
  235. 'FONT-FAMILY' => 'monospace',
  236. ),
  237. 'CODE' => array(
  238. 'FONT-FAMILY' => 'monospace',
  239. ),
  240. 'KBD' => array(
  241. 'FONT-FAMILY' => 'monospace',
  242. ),
  243. 'TT' => array(
  244. 'FONT-FAMILY' => 'monospace',
  245. ),
  246. 'SMALL' => array(
  247. 'FONT-SIZE' => '83%',
  248. ),
  249. 'BIG' => array(
  250. 'FONT-SIZE' => '117%',
  251. ),
  252. 'ACRONYM' => array(
  253. 'FONT-SIZE' => '77%',
  254. 'FONT-WEIGHT' => 'bold',
  255. ),
  256. 'ADDRESS' => array(
  257. 'FONT-STYLE' => 'italic',
  258. ),
  259. 'BLOCKQUOTE' => array(
  260. 'MARGIN-LEFT' => '40px',
  261. 'MARGIN-RIGHT' => '40px',
  262. 'MARGIN-TOP' => '1.12em',
  263. 'MARGIN-BOTTOM' => '1.12em',
  264. ),
  265. 'A' => array(
  266. 'COLOR' => '#0000FF',
  267. 'TEXT-DECORATION' => 'underline',
  268. ),
  269. 'UL' => array(
  270. 'MARGIN' => '0.83em 0', /* only applied to top-level of nested lists */
  271. 'TEXT-INDENT' => '1.3em', /* Custom effect - list indent */
  272. ),
  273. 'OL' => array(
  274. 'MARGIN' => '0.83em 0', /* only applied to top-level of nested lists */
  275. 'TEXT-INDENT' => '1.3em', /* Custom effect - list indent */
  276. ),
  277. 'DL' => array(
  278. 'MARGIN' => '1.67em 0',
  279. ),
  280. 'DT' => array(
  281. ),
  282. 'DD' => array(
  283. 'PADDING-LEFT' => '40px',
  284. ),
  285. 'TABLE' => array(
  286. 'MARGIN' => '0', /* mPDF 4.2 changed */
  287. 'BORDER-COLLAPSE' => 'separate',
  288. 'BORDER-SPACING' => '2px',
  289. 'EMPTY-CELLS' => 'show',
  290. 'TEXT-ALIGN' => 'left',
  291. 'LINE-HEIGHT' => '1.2',
  292. 'VERTICAL-ALIGN' => 'middle',
  293. ),
  294. 'THEAD' => array(
  295. ),
  296. 'TFOOT' => array(
  297. ),
  298. 'TH' => array(
  299. 'FONT-WEIGHT' => 'bold',
  300. 'TEXT-ALIGN' => 'center',
  301. 'PADDING-LEFT' => '0.1em',
  302. 'PADDING-RIGHT' => '0.1em',
  303. 'PADDING-TOP' => '0.1em',
  304. 'PADDING-BOTTOM' => '0.1em',
  305. ),
  306. 'TD' => array(
  307. 'PADDING-LEFT' => '0.1em',
  308. 'PADDING-RIGHT' => '0.1em',
  309. 'PADDING-TOP' => '0.1em',
  310. 'PADDING-BOTTOM' => '0.1em',
  311. ),
  312. 'IMG' => array(
  313. 'MARGIN' => '0', /* mPDF 4.2 changed */
  314. 'VERTICAL-ALIGN' => 'baseline', /* mPDF 4.2 changed */
  315. ),
  316. 'INPUT' => array(
  317. 'FONT-FAMILY' => 'sans-serif',
  318. 'VERTICAL-ALIGN' => 'middle',
  319. 'FONT-SIZE' => '0.9em',
  320. ),
  321. 'SELECT' => array(
  322. 'FONT-FAMILY' => 'sans-serif',
  323. 'FONT-SIZE' => '0.9em',
  324. 'VERTICAL-ALIGN' => 'middle',
  325. ),
  326. 'TEXTAREA' => array(
  327. 'FONT-FAMILY' => 'monospace',
  328. 'FONT-SIZE' => '0.9em',
  329. 'VERTICAL-ALIGN' => 'text-bottom', /* mPDF 4.2 changed */
  330. ),
  331. );
  332. //////////////////////////////////////////////////
  333. // VALUES ONLY LIKELY TO BE CHANGED BY DEVELOPERS
  334. //////////////////////////////////////////////////
  335. $this->pdf_version = '1.5';
  336. // Hyphenation
  337. $this->SHYlanguages = array('en','de','es','fi','fr','it','nl','pl','ru','sv'); // existing defined patterns
  338. $this->default_lineheight_correction=1.2; // Value 1 sets lineheight=fontsize height;
  339. // Value used if line-height not set by CSS (usuallly is)
  340. $this->fontsizes = array('XX-SMALL'=>0.7, 'X-SMALL'=>0.77, 'SMALL'=>0.86, 'MEDIUM'=>1, 'LARGE'=>1.2, 'X-LARGE'=>1.5, 'XX-LARGE'=>2);
  341. // CHARACTER PATTERN MATCHES TO DETECT LANGUAGES
  342. // pattern used to detect RTL characters -> force RTL
  343. $this->pregRTLchars = "\x{0590}-\x{06FF}\x{0750}-\x{077F}\x{FB00}-\x{FDFD}\x{FE70}-\x{FEFF}";
  344. // CJK Chars which require changing and are distinctive of specific charset
  345. $this->pregUHCchars = "\x{3130}-\x{318F}\x{AC00}-\x{D7AF}";
  346. $this->pregSJISchars = "\x{3040}-\x{309F}\x{30A0}-\x{30FF}\x{3190}-\x{319F}\x{31F0}-\x{31FF}";
  347. // Chars which distinguish CJK but not between different // mPDF 3.0 widen Plane 3
  348. $this->pregCJKchars = "\x{2E80}-\x{A4CF}\x{A800}-\x{D7AF}\x{F900}-\x{FAFF}\x{FF00}-\x{FFEF}\x{20000}-\x{2FA1F}";
  349. // ASCII Chars which shouldn't break string
  350. // Use for very specific words
  351. $this->pregASCIIchars1 = "\x{0021}-\x{002E}\x{0030}-\x{003B}?"; // no [SPACE]
  352. // Use for words+
  353. $this->pregASCIIchars2 = "\x{0020}-\x{002E}\x{0030}-\x{003B}?"; // [SPACE] punctuation and 0-9
  354. // Use for chunks > words
  355. $this->pregASCIIchars3 = "\x{0000}-\x{002E}\x{0030}-\x{003B}\x{003F}-\x{007E}"; // all except <>
  356. // Vietnamese - specific
  357. $this->pregVIETchars = "\x{01A0}\x{01A1}\x{01AF}\x{01B0}\x{1EA0}-\x{1EF1}";
  358. // Vietnamese - Chars which shouldn't break string
  359. $this->pregVIETPluschars = "\x{0000}-\x{003B}\x{003F}-\x{00FF}\x{0300}-\x{036F}\x{0102}\x{0103}\x{0110}\x{0111}\x{0128}\x{0129}\x{0168}\x{0169}\x{1EF1}-\x{1EF9}"; // omits < >
  360. $this->pregHEBchars = "\x{0590}-\x{05FF}\x{FB00}-\x{FB49}"; // Hebrew
  361. // Arabic
  362. $this->pregARABICchars = "\x{0600}-\x{06FF}\x{0750}-\x{077F}\x{FB50}-\x{FDFD}\x{FE70}-\x{FEFF}";
  363. // Characters of Urdu, Pashto, Sindhi (but NOT arabic or persian/farsi) [not covered by DejavuSans font]
  364. $this->pregNonARABICchars = "\x{0671}-\x{067D}\x{067F}-\x{0685}\x{0687}-\x{0697}\x{0699}-\x{06A8}\x{06AA}-\x{06AE}\x{06B0}-\x{06CB}\x{06CD}-\x{06D3}";
  365. $this->pregHEBchars = "\x{0590}-\x{05FF}\x{FB00}-\x{FB49}"; // Hebrew
  366. // INDIC
  367. $this->pregHIchars = "\x{0900}-\x{0963}\x{0966}-\x{097F}"; // Devanagari (Hindi) minus the common indic punctuation 0964,0965
  368. $this->pregBNchars = "\x{0980}-\x{09FF}"; // Bengali
  369. $this->pregPAchars = "\x{0A00}-\x{0A7F}"; // Gurmukhi (Punjabi)
  370. $this->pregGUchars = "\x{0A80}-\x{0AFF}"; // Gujarati
  371. $this->pregORchars = "\x{0B00}-\x{0B7F}"; // Oriya
  372. $this->pregTAchars = "\x{0B80}-\x{0BFF}"; // Tamil
  373. $this->pregTEchars = "\x{0C00}-\x{0C7F}"; // Telugu
  374. $this->pregKNchars = "\x{0C80}-\x{0CFF}"; // Kannada
  375. $this->pregMLchars = "\x{0D00}-\x{0D7F}"; // Malayalam
  376. $this->pregSHchars = "\x{0D80}-\x{0DFF}"; // Sinhala
  377. $this->pregINDextra = "\x{200B}-\x{200D}\x{0964}\x{0965}\x{0020}-\x{0022}\x{0024}-\x{002E}\x{003A}-\x{003F}\x{005B}-\x{0060}\x{007B}-\x{007E}-\x{00A0}";
  378. // 200B-D=Zero-width joiners; 0964,0965=Generic Indic punctuation; NBSP & general punctuation (excludes # and / so can use in autoFont() )
  379. $this->allowedCSStags = 'DIV|P|H1|H2|H3|H4|H5|H6|FORM|IMG|A|BODY|TABLE|HR|THEAD|TFOOT|TBODY|TH|TR|TD|UL|OL|LI|PRE|BLOCKQUOTE|ADDRESS|DL|DT|DD';
  380. // mPDF 4.0
  381. $this->allowedCSStags .= '|SPAN|TT|I|B|BIG|SMALL|EM|STRONG|DFN|CODE|SAMP|KBD|VAR|CITE|ABBR|ACRONYM|STRIKE|S|U|DEL|INS|Q|FONT';
  382. $this->outerblocktags = array('DIV','FORM','CENTER','DL');
  383. $this->innerblocktags = array('P','BLOCKQUOTE','ADDRESS','PRE','H1','H2','H3','H4','H5','H6','DT','DD');
  384. // NOT Currently used
  385. $this->inlinetags = array('SPAN','TT','I','B','BIG','SMALL','EM','STRONG','DFN','CODE','SAMP','KBD','VAR','CITE','ABBR','ACRONYM','STRIKE','S','U','DEL','INS','Q','FONT','TTS','TTZ','TTA');
  386. $this->listtags = array('UL','OL','LI');
  387. $this->tabletags = array('TABLE','THEAD','TFOOT','TBODY','TFOOT','TR','TH','TD');
  388. $this->formtags = array('TEXTAREA','INPUT','SELECT');
  389. ?>