Arena  1.0
A content management system
 All Classes Files Functions Variables Pages
MarkdownPreStatements.py File Reference

This file defines several classes that represent Markdown-style statements that are parsed during a pre-scan of a source stream. More...

Classes

class  Plugins.Content.Parse.Semantic.MarkdownPreStatements.APrescannedMarkdownStatement
 A pre-scanned Markdown statement. More...
 
class  Plugins.Content.Parse.Semantic.MarkdownPreStatements.AMarkdownLinkIdentifierStatement
 A link identifier statement. More...
 
class  Plugins.Content.Parse.Semantic.MarkdownPreStatements.AMarkdownXMLStatement
 A class that handles XML tags in the source (by skipping them) More...
 
class  Plugins.Content.Parse.Semantic.MarkdownPreStatements.AMarkdownAmpersandStatement
 A class that handles ampersands in the source. More...
 
class  Plugins.Content.Parse.Semantic.MarkdownPreStatements.AMarkdownParenStatement
 A class that handles parentheses in the source. More...
 
class  Plugins.Content.Parse.Semantic.MarkdownPreStatements.AMarkdownLineEnding
 A class that handle line endings. More...
 
class  Plugins.Content.Parse.Semantic.MarkdownPreStatements.AMarkdownSpaceSpan
 A class that handles whitespace. More...
 

Variables

string Plugins.Content.Parse.Semantic.MarkdownPreStatements.mdxmlsStringRepresentation = "<"
 The format used to write the beginning of an XML tag to the output stream.
 
string Plugins.Content.Parse.Semantic.MarkdownPreStatements.mdxmlsMailtoSchema = "mailto:"
 The format used to write a mailto: link to the output string.
 
string Plugins.Content.Parse.Semantic.MarkdownPreStatements.mdasStringRepresentation = "&"
 The format used to write an ampersand to the output stream.
 
dictionary Plugins.Content.Parse.Semantic.MarkdownPreStatements.mdpsSpecialMarks
 The formats used to write special characters to the stream. More...
 

Detailed Description

This file defines several classes that represent Markdown-style statements that are parsed during a pre-scan of a source stream.