(language: string, code: string)
| 24 | const markdownFence = '```'; |
| 25 | |
| 26 | const renderMarkdownCodeBlock = (language: string, code: string) => |
| 27 | [`${markdownFence}${language}`, code, markdownFence].join('\n'); |
| 28 | |
| 29 | const renderPackageManagerCode = ({ attributes }: PlaceholderData) => { |
| 30 | const cmd = attributes.cmd; |
no outgoing calls
no test coverage detected