fast-html-parser icon indicating copy to clipboard operation
fast-html-parser copied to clipboard

rename event types to make common prefix

Open Alexey-T opened this issue 5 years ago • 0 comments

  TOnFoundTag = procedure(NoCaseTag, ActualTag: string) of object;
  // procedural:
  TOnFoundTagP = procedure(NoCaseTag, ActualTag: string);

  // when text  found in the HTML
  TOnFoundText = procedure(Text: string) of object;
  // procedural:
  TOnFoundTextP = procedure(Text: string);

->

THtmlParserOnFoundTag THtmlParserOnFoundText etc

Alexey-T avatar Sep 18 '20 12:09 Alexey-T