function buildCommentHTML(comment) {
var iconSmallOverflowHorizontal = ``;
var iconCollapse = ``;
var iconExpand = ``;
var depthClass = "";
var customClass = "";
var detailsStartHTML = "";
var detailsEndHTML = "";
var commentHeader = "";
var commentFooter = "";
var commentAvatar = "";
var commentBody = "";
if ( comment.depth == 0 ) {
depthClass += "root ";
} else {
depthClass += "child "
}
if ( comment.depth > 3 ) {
depthClass += "comment--too-deep ";
}
if (comment.newly_created) {
customClass = "comment-created-via-fetch"
}
if (comment.depth < 3) {
detailsStartHTML = `
`;
commentHeader = `
${ iconCollapse } ${ iconExpand }
`; detailsEndHTML = `