X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/05394a18d47c8d6d2e7e91dcfe96b2a83f566c8d..4b123bb9ccbacf21c742173e95f418cca9a5516c:/utils/wxPython/modules/lseditor/markup.cpp diff --git a/utils/wxPython/modules/lseditor/markup.cpp b/utils/wxPython/modules/lseditor/markup.cpp new file mode 100644 index 0000000000..82306b263b --- /dev/null +++ b/utils/wxPython/modules/lseditor/markup.cpp @@ -0,0 +1,46 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: No names yet. +// Purpose: Contrib. demo +// Author: Aleksandras Gluchovas +// Modified by: +// Created: 22/09/98 +// RCS-ID: $Id$ +// Copyright: (c) Aleskandars Gluchovas +// Licence: GNU General Public License +///////////////////////////////////////////////////////////////////////////// + +// 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; +}