wzkb_github_export_table_post
Convert a core/table block to a GFM Markdown table.
Filters:
- wzkb_github_export_table_pre — modify the block array or return a string to bypass.
- wzkb_github_export_table_post — modify the generated GFM table string.
Type: filter
Since: 3.1.0
Source: includes/github/class-content-exporter.php line 559
Parameters
| Type | Name | Description |
|---|---|---|
array | $block | Parsed block array. |
Usage
add_filter( 'wzkb_github_export_table_post', function($block) {
// ...
return $block;
} );