class CodeBlockComponent extends HTMLElement { connectedCallback() { this.trimmed = this.innerHTML.trim(); const lang = this.getAttribute("language"); const lineNumbers = this.getAttribute("line-numbers") === "true"; console.log(lineNumbers, lang); this.innerHTML = `
${
this.trimmed
}