diff --git a/link.module b/link.module
index 241066d..223ca74 100644
--- a/link.module
+++ b/link.module
@@ -676,6 +676,8 @@ function theme_link_field($vars) {
   if (!empty($element['attributes']['title'])) {
     $output .= '<div class="link-attributes">' . drupal_render($element['attributes']['title']) . '</div>';
   }
+  // Render any output added by other modules.
+  $output .= drupal_render_children($element);
   return $output;
 }
 
