Skip to content

Commit

Permalink
fix: Reduce font size on capability index headers
Browse files Browse the repository at this point in the history
  • Loading branch information
jlacivita committed Aug 17, 2023
1 parent 168fcaf commit 6c1487b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/github.io/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const capabilities = () => {

const linkify = (method) => `[${method}](./${corerpc.methods.find(m => m.name === method) ? 'core' : 'manage'}/${method.split('.').shift()}/#${method.match(/\.on[A-Z]/) ? method.split('.').pop().charAt(2).toLowerCase() + method.split('.').pop().substring(3).toLowerCase() : method.split('.').pop().toLowerCase()})`
Object.keys(capabilities).sort().forEach(c => {
manifest += `## \`${c}\`\n`
manifest += `### \`${c}\`\n`

if (capabilities[c].uses.length) {
manifest += '\n| Uses |\n'
Expand Down

0 comments on commit 6c1487b

Please sign in to comment.