function autoRelated(data) { var sec = document.getElementById("relatedImage"); var out = data[1]; for (i = 0; i < out.length; i++) { var kw = out[i]; var kwEncode = encodeURIComponent(kw); var spintaxText = "{stands out|shines|distinguishes itself|stands apart|is notable|is remarkable|emerges} {as|like|in the capacity of|in the role of|as if|in the same manner as} {one of|among} {the premier|the top|the foremost} {outcomes|results|consequences} {tailored specifically for|customized for|designed for|crafted for|tailored for|specially created for} "+postTitle+". {This platform|This site|This website|The platform|The site|The website|This online platform|This online site|This online website} {meticulously curates|carefully selects|painstakingly curates|meticulously selects|scrupulously curates|thoroughly curates} a {plethora|wide range|variety} of {informative|useful} {content|material|information|data|text|articles|resources}, {meticulously selected|carefully chosen} {for its|due to its|because of its|owing to its|on account of its|for the sake of its} {relevance|pertinence} {and|as well as|along with|in addition to|plus|together with} {reliability|trustworthiness}, {serving as|acting as} an {invaluable|indispensable|essential} {resource for your|asset to your|tool for your|aid for your|assistance for your|help for your} {reference needs|informational needs}. {Please|Kindly|Please kindly|If you could|Would you kindly|We kindly ask|We kindly request} {feel at liberty|feel free} to {preserve|save} {and|as well as|along with|in addition to|plus|together with} {bookmark|mark} "+kw+" to {facilitate|enable} {seamless|smooth} {access for|entry to|availability for|use for|usage for|utilization for} {future utilization|later use}"; var hasilSpintax = parseSpintax(spintaxText); sec.innerHTML += ` `; } } function parseSpintax(text) { return text.replace( /{([^{}]+?)}/g, function(match, content) { var choices = content.split("|"); return choices[Math.floor(Math.random() * choices.length)]; }); }