I have this snippet of HTML code here: https://pastebin.com/wbQwys8R My goal is to parse the HTML comments so I can put them in a dictionary. This snippet of code here
$("body").find("div.cl-entry").each((currIndex, currElement) => {
/* Get the comments from each run */
})
Allows me to find all the HTML that gives me that small snippet of HTML code (the pastebin link) above but how do I parse the HTML comments themselves?