Skip to content
Snippets Groups Projects
inline-code.js 219 B
Newer Older
  • Learn to ignore specific revisions
  • Jonas Leder's avatar
    Jonas Leder committed
    class InlineCode extends HTMLElement {
        constructor() {
            super();
            this.innerHTML = "<code class=\"language-text\">" + this.innerHTML + "</code>";
        }
    }
    
    customElements.define("jl-code", InlineCode);