Skip to content

Commit

Permalink
Update XenforoBatchParser.js
Browse files Browse the repository at this point in the history
Removed excess comments
  • Loading branch information
Kiradien committed Sep 28, 2024
1 parent e7e54fb commit de4bf40
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions plugin/js/parsers/XenforoBatchParser.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,8 @@
/*
Template to use to create a new parser
*/
"use strict";

// Use one or more of these to specify when the parser is to be used
/*
// Use this function if site's host name is sufficient.
// i.e. All pages are on same site, and use same format.
parserFactory.register("template.org", () => new TemplateParser());
// Use this function if site's URL is sufficient
parserFactory.registerUrlRule(
url => TemplateParser.urlMeetsSelectionCriteria(url),
() => new TemplateParser()
);
// Use this if pages are on multiple sites, or host name isn't unique
parserFactory.registerRule(
function(url, dom) {
return TemplateParser.urlMeetsSelectionCriteria(url) ||
TemplateParser.domMeetsSelectionCritera(dom);
},
() => new TemplateParser()
);
*/
parserFactory.registerManualSelect(
"Xenforo Batch Post Parser",
function() { return new XenforoBatchParser() }
);
//https://forum.questionablequesting.com/threads/with-this-ring-young-justice-si-story-only.8961/

class XenforoBatchParser extends Parser{
constructor() {
Expand Down

0 comments on commit de4bf40

Please sign in to comment.