Ejemplo n.º 1
0
 public WikiTerminalBase(string name, WikiTermType termType, string openTag, string closeTag, string htmlElementName) : base(name) {
   TermType = termType;
   OpenTag = openTag;
   CloseTag = closeTag;
   HtmlElementName = htmlElementName; 
   this.Priority = TerminalPriority.Normal + OpenTag.Length; //longer tags have higher priority
 }
Ejemplo n.º 2
0
 public WikiTerminalBase(string name, WikiTermType termType, string openTag, string closeTag, string htmlElementName) : base(name)
 {
     TermType        = termType;
     OpenTag         = openTag;
     CloseTag        = closeTag;
     HtmlElementName = htmlElementName;
     this.Priority   = OpenTag.Length; //longer tags have higher priority
 }
Ejemplo n.º 3
0
 public WikiTagTerminal(string name,  WikiTermType termType, string openTag, string closeTag, string htmlElementName)
   : base (name, termType, openTag, closeTag, htmlElementName) { }
Ejemplo n.º 4
0
 public WikiTagTerminal(string name,  WikiTermType termType, string tag, string htmlElementName)
   : this (name, termType, tag, string.Empty, htmlElementName) { }
Ejemplo n.º 5
0
 public WikiTagTerminal(string name, WikiTermType termType, string openTag, string closeTag, string htmlElementName)
     : base(name, termType, openTag, closeTag, htmlElementName)
 {
 }
Ejemplo n.º 6
0
 public WikiTagTerminal(string name, WikiTermType termType, string tag, string htmlElementName)
     : this(name, termType, tag, string.Empty, htmlElementName)
 {
 }