Toolbox Theory
Archived Essays
compiledHeaderHtml(context ) { if (!this.#title) { return ""; } const headerOptions = { amplitude: 24, density: 10, fontSize: 17, padding: 7, }; const svgHeader = createWaveTitleSVG( context.renderPlainText(this.#title), headerOptions, ); const htmlHeader = `
${context.renderPlainTextWithReferenceLinks( this.#title, )}
`; const styler = ` `; return `
${svgHeader.svg}${htmlHeader}${styler}
`; }