Index: content.php
===================================================================
--- content.php	(revision 1921)
+++ content.php	(working copy)
@@ -22,7 +22,13 @@
 	</div><!-- .entry-summary -->
 	<?php else : ?>
 	<div class="entry-content">
-		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wcbs' ) ); ?>
+		<?php
+		  // output accessible read more link
+			the_content( sprintf(
+        __( 'Continue reading %s<span class="meta-nav">&rarr;</span>', 'wcbs' ),
+        the_title( '<span class="assistive-text">', '</span> ', false )
+        ) );
+    ?>
 		<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wcbs' ), 'after' => '</div>' ) ); ?>
 	</div><!-- .entry-content -->
 	<?php endif; ?>
Index: lib/utils/twentyten-functions.php
===================================================================
--- lib/utils/twentyten-functions.php	(revision 1921)
+++ lib/utils/twentyten-functions.php	(working copy)
@@ -231,7 +231,16 @@
  * @return string "Continue Reading" link
  */
 function twentyten_continue_reading_link() {
-	return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) . '</a>';
+	$link = sprintf( '<a href="%1$s">%2$s</a>',
+					  esc_url( get_permalink() ),
+					  /* translators: %s: Name of current post */
+					  sprintf(
+						  __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcampbase' ),
+							'<span class="assistive-text">' . get_the_title() . '</span> '
+						)
+					 );
+	return $link;
+	// return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) . '</a>';
 }
 
 /**
