public HTMLWikiProcessor(HashSet<int> exclusions, bool ignoreintegers)
 {
     this.exclusions = exclusions;
     this.ignoreintegers = ignoreintegers;
     //initialize Tag processor and buffer
     tp = new TagProcessor();
     bp = new BufferProcessor(20);
     wp = new WordProcessor(150);
     wikip = new WikiProcessor();
     extrawords = new char[500];
     extraword_counter = 0;
 }
Exemple #2
0
 public HTMLWikiProcessor(HashSet <int> exclusions, bool ignoreintegers)
 {
     this.exclusions     = exclusions;
     this.ignoreintegers = ignoreintegers;
     //initialize Tag processor and buffer
     tp                = new TagProcessor();
     bp                = new BufferProcessor(20);
     wp                = new WordProcessor(150);
     wikip             = new WikiProcessor();
     extrawords        = new char[500];
     extraword_counter = 0;
 }