nyctergatis.com

Contact

Projects
Sysquake Remote Live
NME
PDF
Hike
Sudoku
GifBuilder
jpeglib for Palm OS
MySQL Client
Cross-GCC for Mac OS
NMEEPub.c
Go to the documentation of this file.
00001 
00008 /* License: new BSD license (see header file) */
00009 
00010 #include "NME.h"
00011 
00013 static NMEEncodeCharDict const opsCharDict[] =
00014 {
00015     {'<', "&lt;"},
00016     {'>', "&gt;"},
00017     {'"', "&quot;"},
00018     {'&', "&amp;"},
00019     {0, NULL}
00020 };
00021 
00022 NMEOutputFormat const NMEOutputFormatOPSXHTML =
00023 {
00024     " ",    // space
00025     2,  // indentSpaces
00026     0,  // defFontSize
00027     '%',    // ctrlChar
00028     "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n"
00029         "<!-- Generated by Nyctergatis Markup Engine, "
00030             __DATE__ " " __TIME__ " -->\n"
00031         "<!DOCTYPE html PUBLIC\n"
00032         " \"-//W3C//DTD XHTML 1.1//EN\"\n"
00033         " \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\n"
00034         "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n"
00035         "<head>\n"
00036         "<title>Epub fragment</title>\n"
00037         "<style type=\"text/css\">\n"
00038         "h1 {page-break-before: always}\n"
00039         "p.img {text-align: center}\n"
00040         "</style>\n"
00041         "</head>\n"
00042         "<body>\n",
00043     "</body>\n</html>\n",   // doc
00044     4,  // highest heading level
00045     "<h%{l}%%{x} id=\"h%{o}\"%%>",
00046         "</h%{l}>\n",   // heading
00047     "<p>", "</p>\n",    // par
00048     "<br />",   // line break
00049     "<pre>\n", "</pre>\n",  // pre
00050     "", "\n",   // pre line
00051     TRUE,   // sublistInListItem
00052     "\n<ul>\n", "</ul>\n",  // UL
00053     "%%{2*l} %%<li>", "</li>\n",    // UL line
00054     "\n<ol>\n", "</ol>\n",  // OL
00055     "%%{2*l} %%<li>", "</li>\n",    // OL line
00056     "\n<dl>\n", "</dl>\n",  // DL
00057     "%%{2*l} %%<dt>", "</dt>\n",    // DT
00058     NULL,   // emptyDT
00059     "%%{2*l} %%<dd>", "</dd>\n",    // DD
00060     "<div style=\"margin-left:2em\">\n",
00061         "</div>\n", // indented section
00062     "%%{2*l} %%<p>", "</p>\n",  // indented par
00063     "<table>\n", "</table>\n",  // table
00064     "<tr>", "</tr>\n",  // table row
00065     "<th>", "</th>\n",  // table header cell
00066     "<td>", "</td>\n",  // table normal cell
00067     "<hr />\n", // hr
00068     "<b>", "</b>",  // bold
00069     "<i>", "</i>",  // italic
00070     "<u>", "</u>",  // underline
00071     "<sup>", "</sup>",  // superscript
00072     "<sub>", "</sub>",  // subscript
00073     "<tt>", "</tt>",    // monospace
00074     "<a href=\"", "</a>", "\">", FALSE, // link
00075     "<img src=\"", "\" />", "\" alt=\"", FALSE, TRUE,   // image
00076     NULL,   // interwiki
00077     NULL, NULL, // encodeURLFun
00078     NMEEncodeCharFunDict, (void *)opsCharDict,  // char encoder
00079     NMEEncodeCharFunDict, (void *)opsCharDict,  // char pre encoder
00080     70, NULL, NULL, // wordwrap
00081     NULL, NULL, // char hook
00082     NULL, NULL, NULL, NULL, // process hooks
00083     NULL,   // plugins
00084     NULL,   // autoconverts
00085     NULL, NULL  // getVar
00086 };
Generated by Doxygen.
Copyright 2007-2011, Yves Piguet.
All rights reserved.