From 5391bdca3cb660dcc66910941ff5b117c5a4c1db Mon Sep 17 00:00:00 2001 From: openshwprojects Date: Mon, 6 Mar 2023 12:24:45 +0100 Subject: [PATCH] docs test --- docs/README.md | 14 +++++++------- scripts/getcommands.js | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/README.md b/docs/README.md index 2ece50c75..cc3fdcbf9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -5,10 +5,10 @@ All descriptions were taken from code. Do not add anything here, as it will overwritten with next rebuild. | Section | Comment | |:------------- |------:| -| (Channel Types)[https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/channelTypes.md] (33 total) | todo | -| (IO/Pin Roles)[https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/ioRoles.md] (65 total) | todo | -| (Console/Script commands)[https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/commands.md] (225 total) | todo | -| (Flags)[https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/flags.md] (38 total) | todo | -| (Script constants)[https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/constants.md] (18 total) | todo | -| (Drivers)[https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/drivers.md] (28 total) | todo | -| (Console/Script commands [Extended Edition])[https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/commands-extended.md] (225 total) | todo | +| [Channel Types](https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/channelTypes.md) (33 total) | todo | +| [IO/Pin Roles](https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/ioRoles.md) (65 total) | todo | +| [Console/Script commands](https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/commands.md) (225 total) | todo | +| [Flags](https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/flags.md) (38 total) | todo | +| [Script constants](https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/constants.md) (18 total) | todo | +| [Drivers](https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/drivers.md) (28 total) | todo | +| [Console/Script commands [Extended Edition]](https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/commands-extended.md) (225 total) | todo | diff --git a/scripts/getcommands.js b/scripts/getcommands.js index 64adc192c..de5d2fc0d 100644 --- a/scripts/getcommands.js +++ b/scripts/getcommands.js @@ -888,7 +888,7 @@ for (let i = 0; i < links.length; i++) { let url = base + link.fullName; let total = link.json.length; let desc = "todo"; - let textshort = `| (${link.label})[${url}] (${total} total) | ${desc} |`; + let textshort = `| [${link.label}](${url}) (${total} total) | ${desc} |`; // allow multi-row entries in table entries. textshort = textshort.replace(/\n/g, '
');