? text_field_tags/cvs
Index: text_field_tags/text_field_tags.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/text_field_tags/text_field_tags.module,v
retrieving revision 1.1
diff -u -u -p -r1.1 text_field_tags.module
--- text_field_tags/text_field_tags.module	16 Oct 2007 19:59:00 -0000	1.1
+++ text_field_tags/text_field_tags.module	14 Jan 2008 13:38:07 -0000
@@ -38,6 +38,10 @@ function text_field_tags_field_formatter
       'label' => t('Block quote (indent)'),
       'field types' => array('text'),
     ),
+    'link' => array(
+      'label' => t('As link'),
+      'field types' => array('text'),
+    ),
   );
 }
 
@@ -62,5 +66,8 @@ function text_field_tags_field_formatter
     $text = check_plain($text);
   }
 
+  if ($formatter == 'link') {
+    return l($text, 'node/'. $node->nid);
+  }
   return '<'. $formatter .'>'. $text . '</'. $formatter .'>';
 }
\ No newline at end of file
