diff --git a/bs/docs/jsdom.js b/bs/docs/jsdom.js index dfdaf23..dc46d1b 100644 --- a/bs/docs/jsdom.js +++ b/bs/docs/jsdom.js @@ -1,5 +1,5 @@ import { JSDOM } from "jsdom"; -const html_default= "
"; +const html_default= ""; let keys= []; let dom= null; import { relative } from 'node:path'; diff --git a/docs/components/code.html.js b/docs/components/code.html.js index 1994fb1..181e04b 100644 --- a/docs/components/code.html.js +++ b/docs/components/code.html.js @@ -194,7 +194,7 @@ export function code({ id, src, content, language= "js", className= host.slice(1 registerClientPart(page_id); dataJS= "todo"; } - return el("div", { id, className, dataJS }).append( + return el("div", { id, className, dataJS, tabIndex: 0 }).append( el("code", { className: "language-"+language, textContent: content.trim() }) ); }