Index: sites/all/modules/metatags_quick/metatags_quick.module
===================================================================
--- sites/all/modules/metatags_quick/metatags_quick.module	(revision 18682)
+++ sites/all/modules/metatags_quick/metatags_quick.module	(working copy)
@@ -351,6 +351,10 @@
 function _metatags_quick_add_head($item = FALSE) {
   static $added_meta = array();
   static $meta_data = array();
+  $module_path = drupal_get_path('module', 'metatags_quick');
+  include_once $module_path . '/known_tags.inc';
+  $known_tags = _metatags_quick_known_fields();
+
   if (!empty($added_meta[$item['name']])) {
     return;
   }
@@ -370,13 +374,25 @@
     $content = trim(strip_tags($content));
     $item['content'] = $content;
     $meta_data[] = $item;
-    $element = array(
-      '#tag' => 'meta',
-      '#attributes' => array(
-        'name' => $item['name'],
-        'content' => $item['content'],
-      ),
-    );
+    if ($known_tags[$item['name']]['type'] == 'head_link') {
+      $element = array(
+        '#tag' => 'link',
+        '#attributes' => array(
+          'rel' => $item['name'],
+          'href' => $item['content'],
+        ),
+      );
+    }
+    else {
+      $element = array(
+        '#tag' => 'meta',
+        '#attributes' => array(
+          'name' => $item['name'],
+          'content' => $item['content'],
+        ),
+      );
+    }
+
     drupal_add_html_head($element, 'metatags_quick_' . $item['name']);
     
   }

