(binding)
| 19 | } |
| 20 | |
| 21 | function createCommandText(binding) { |
| 22 | if (binding.command) { |
| 23 | return `\`${binding.command}\``; |
| 24 | } else if (binding.commands) { |
| 25 | return binding.commands.map((c) => `\`${c}\``).join("<br />"); |
| 26 | } else { |
| 27 | return "N/A"; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | function wrapCode(text) { |
| 32 | if (text && text.length > 0) { |