]>
git.saurik.com Git - wxWidgets.git/blob - utils/HelpGen/src/markup.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Contrib. demo
4 // Author: Aleksandras Gluchovas
8 // Copyright: (c) Aleskandars Gluchovas
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
25 static TagStructT htmlTags
[] =
27 { "<b>","</b>" }, // 0
28 { "<i>","</i>" }, // 1
29 { "<pre>","</pre>" }, // 2
30 { "<font color=\"#000000\">","</font>" }, // 3
31 { "<font color=\"#8F0000\">","</font>" }, // 4
32 { "<font color=\"#008F00\">","</font>" }, // 5
33 { "<font color=\"#0000CF\">","</font>" }, // 6
34 { "<p>","</p>" }, // 7
36 { "<h1>","</h1>" }, // 9
37 { "<h2>","</h2>" }, // 10
38 { "<h3>","</h3>" }, // 11
39 { "<ul>","</ul>" }, // 12
40 { "<li>","</li>" }, // 13
43 MarkupTagsT
get_HTML_markup_tags()