From 7c8684dcb8fc82309a09a098271fb07f74298907 Mon Sep 17 00:00:00 2001 From: Ryan Bass Date: Mon, 7 Jun 2021 12:41:01 -0700 Subject: [PATCH] Update index.js Changed html class searched for to get results. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 910d72f..0603463 100644 --- a/index.js +++ b/index.js @@ -69,7 +69,7 @@ function lookup(word, kind, callback) { function onbody(body) { var tree = processor.parse(body) - done(null, $.selectAll('main .k3_b', tree).map(each)) + done(null, $.selectAll('main .mz_b', tree).map(each)) } function done(err, results) {