Index: comments.php
===================================================================
--- comments.php	(revision 948)
+++ comments.php	(working copy)
@@ -58,7 +58,7 @@
 	<p id="add-user-note" style="display:none;"><a href=""><?php _e( 'Have a note to contribute?', 'wporg' ); ?></a></p>
 
 	<?php comment_form( array(
-		'comment_field'       => '<p class="comment-form-comment"><label for="comment">' . _x( 'Add Note', 'noun', 'wporg' ) . '</label> <textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>',
+		'comment_field'       => DevHub_User_Submitted_Content::wp_editor_comments(),
 		'comment_notes_after' => '<p>' .
 			__( 'Notes should supplement code reference entries, for example examples, tips, explanations, use-cases, and best practices.', 'wporg' ) .
 			'</p><p>' .
Index: inc/user-content.php
===================================================================
--- inc/user-content.php	(revision 948)
+++ inc/user-content.php	(working copy)
@@ -108,6 +108,30 @@
 		return str_replace( 'Wordpress', 'Word&#112;ress', $code );
 	}
 
+	/**
+	 * Capture an {@see wp_editor()} instance as the 'User Contributed Notes' comment form.
+	 *
+	 * Uses output buffering to capture the editor instance for use with the {@see comments_form()}.
+	 *
+	 * @return string HTML output for the wp_editor-ized comment form.
+	 */
+	public static function wp_editor_comments() {
+		ob_start();
+		echo '<p class="comment-form-comment"><label for="comment">' . _x( 'Add Note', 'noun', 'wporg' ) . '</label>';
+		wp_editor( '', 'comment', array(
+			'media_buttons' => false,
+			'textarea_name' => 'comment',
+			'textarea_rows' => 8,
+			'quicktags'     => array(
+				'buttons' => 'strong,em,link,ul,ol,li,code'
+			),
+			'teeny'         => true,
+			'tinymce'       => false,
+		) );
+		echo '</p>';
+		return ob_get_clean();
+	}
+
 } // DevHub_User_Submitted_Content
 
 DevHub_User_Submitted_Content::init();
