extension: Clean up routes.html formatting a bit.

This commit is contained in:
Omar Rizwan 2021-08-16 16:51:39 -07:00
parent a6d2df4193
commit 37cdd270bd

View file

@ -697,10 +697,13 @@ Routes["/runtime/routes.html"] = makeRouteWithContents(async () => {
</ul> </ul>
</dd>` : '<dd style="background-color: #f99">No usage found!</dd>'} </dd>` : '<dd style="background-color: #f99">No usage found!</dd>'}
${lineRange ? ${lineRange ?
`<details> `<dd><details>
<summary>Source code (<a href="https://github.com/osnr/TabFS/blob/master/extension/background.js#L${lineRange[0]}-L${lineRange[1]}">on GitHub</a>) <summary>Source code (<a href="https://github.com/osnr/TabFS/blob/master/extension/background.js#L${lineRange[0]}-L${lineRange[1]}">on GitHub</a>)</summary>
<pre>${jsLines[lineRange[0] - 1]}</pre> <pre><code>${
</details>` : '<dd style="background-color: #f99">No source code found!</dd>'} jsLines[lineRange[0] - 1]
// FIXME: get entire range; escape for HTML
}</code></pre>
</details></dd>` : '<dd style="background-color: #f99">No source code found!</dd>'}
`; `;
}).join('\n') + ` }).join('\n') + `
</dl> </dl>