Post Format Link Validation Error

You can temporarily remove the filter that adds paragraph tags:

// remove the filter
remove_filter( 'the_content', 'wpautop' );

// output content
the_content();

// add the filter again
add_filter( 'the_content', 'wpautop' );