Skip to content

atmosphere_html_to_markdown

github-actions[bot] edited this page Jun 12, 2026 · 1 revision

Filters the markdown produced from post content.

Auto-generated Example

/**
 * Filters the markdown produced from post content.
 *
 * @param string $markdown 
 * @param string $content 
 * @return string The filtered value.
 */
function my_atmosphere_html_to_markdown_callback( string $markdown, string $content ) {
    // Your code here.
    return $markdown;
}
add_filter( 'atmosphere_html_to_markdown', 'my_atmosphere_html_to_markdown_callback', 10, 2 );

Parameters

  • string $markdown Converted markdown.
  • string $content Raw post content.

Files

\apply_filters( 'atmosphere_html_to_markdown', $markdown, $content )

← All Hooks

Clone this wiki locally