how to do cross scripting in wordpress in comments code example

Example 1: How to disable Gutenberg / block editor for certain post types

add_filter( 'use_block_editor_for_post_type', 'prefix_disable_gutenberg', 10, 2 );
	function prefix_disable_gutenberg( $current_status, $post_type ) {
		// Use your post type key instead of 'page or post'
		if ( in_array( $post_type, array( 'page', 'post' ) ) ) {
			return false;
		}
		return $current_status;
	}

Example 2: how to make comments in markdown which do not render in html

[//] <> (This works, parathesis are necessary btw)
[//] # (This is perhaps the most platform independent solution.
In either case, the comments will not render to html,
even if the user selects view source.)

Tags:

Html Example