JSFiddle - React, Tailwind, and code Playground

HTML

<p id="category1"></p>

JavaScript

$(function () {
	var link = [
		["category1", "http://www.xyzabcxyz.com/apple", "Apple description comes here"],
		["category2", "http://www.xyzabcxyz.com/banana", "Banana description comes here"],
		["category3", "http://www.xyzabcxyz.com/apricots", "Apricots description comes here"],
		["category4", "http://www.xyzabcxyz.com/peaches", "Peaches description comes here"]
	];
	$.each(link, function (e) {
	   if ($("#" + link[e][0])[0]) {
		   $("#" + link[e][0]).append('<a target="_blank" href="' + link[e][1] + '">' + link[e][2] + '</a>');
	   }
	});
});