diff --git a/core/modules/content_moderation/content_moderation.module b/core/modules/content_moderation/content_moderation.module
index 582242b..9181439 100644
--- a/core/modules/content_moderation/content_moderation.module
+++ b/core/modules/content_moderation/content_moderation.module
@@ -35,11 +35,11 @@ function content_moderation_help($route_name, RouteMatchInterface $route_match)
       $output .= '<h3>' . t('Uses') . '</h3>';
       $output .= '<dl>';
       $output .= '<dt>' . t('Moderation states') . '</dt>';
-      $output .= '<dd>' . t('Moderation states provide the <em>Draft</em> and <em>Archived</em> states as additions to the basic <em>Published</em> option. You can click the blue <em>Add Moderation state</em> button and create new states.') . '</dd>';
+      $output .= '<dd>' . t('Moderation <a href =":states">states</a> provide the <em>Draft</em> and <em>Archived</em> states as additions to the basic <em>Published</em> option. You can click the blue <em>Add Moderation state</em> button and create new states.', array(':states' => \Drupal::url('entity.moderation_state.collection'))) . '</dd>';
       $output .= '<dt>' . t('Moderation state transitions') . '</dt>';
-      $output .= '<dd>' . t('Using the "Moderation state transitions" screen, you can create the actual workflow. You decide the direction in which content moves from state to state, and which user roles are allowed to make that move.') . '</dd>';
+      $output .= '<dd>' . t('Using the <a href=":transitions">"Moderation state transitions"</a> screen, you can create the actual workflow. You decide the direction in which content moves from state to state, and which user roles are allowed to make that move.', array(':transitions' => \Drupal::url('entity.moderation_state_transition.collection'))) . '</dd>';
       $output .= '<dt>' . t('Configure Content Moderation permissions') . '</dt>';
-      $output .= '<dd>' . t('Each state is exposed as a permission. If a user has the permission for a transition, then they can move that node from the start state to the end state') . '</p>';
+      $output .= '<dd>' . t('Each state is exposed as a <a href=":permission">permissions</a>. If a user has the permission for a transition, then they can move that node from the start state to the end state', array(':permissions' => \Drupal::url('user.admin_permissions'))) . '</p>';
       $output .= '</dl>';
       return $output;
   }
