(code: string, language: string, pageId?: string)
| 48 | * Export a code block |
| 49 | */ |
| 50 | export function exportCodeBlock(code: string, language: string, pageId?: string): void { |
| 51 | openExportTab({ |
| 52 | sourceType: 'code-block', |
| 53 | code, |
| 54 | language, |
| 55 | pageId |
| 56 | }) |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Export a table block |
no test coverage detected