WordPress: Default post editor text

// Default post editor text //
add_filter( 'default_content', 'diww_default_post_content' );
function diww_default_post_content( $content ) {
	$content = '
// Any stuff you would put into your HTML
';
	return $content;
}