LEOWebPageInstructionsGeneric
IntroductionGeneric implementation of web page generator mode instructions. Should work on all ANSI C++ systems. FunctionsLEOHTMLEncodedInstructionvoid LEOHTMLEncodedInstruction( LEOContext *inContext ) DiscussionPop a string off the stack and return a version with all HTML-unsafe characters escaped as entities. I.e. replace < and > and & with < and > and &. (LEO_HTML_ENCODED_INSTR) LEOMarkdownToHTMLInstructionvoid LEOMarkdownToHTMLInstruction( LEOContext *inContext ) DiscussionPop a string containing Markdown-formatted text off the stack and return an HTMLversion. (LEO_MARKDOWN_TO_HTML_INSTR) |