///////////////////////////////////////////////////////////////////////////// // Name: No names yet. // Purpose: Contrib. demo // Author: Aleksandras Gluchovas // Modified by: // Created: 22/09/98 // RCS-ID: $Id: markup.cpp 24263 2003-10-22 20:54:50Z MBN $ // Copyright: (c) Aleskandars Gluchovas // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop #endif #ifndef WX_PRECOMP #include "wx/wx.h" #endif #include "markup.h" static TagStructT htmlTags[] = { { "","" }, // 0 { "","" }, // 1 { "
","
" }, // 2 { "","" }, // 3 { "","" }, // 4 { "","" }, // 5 { "","" }, // 6 { "

","

" }, // 7 { "
","" }, // 8 { "

","

" }, // 9 { "

","

" }, // 10 { "

","

" }, // 11 { "" }, // 12 { "
  • ","
  • " }, // 13 }; MarkupTagsT get_HTML_markup_tags() { return htmlTags; }