# This patch file was generated by NetBeans IDE
# Following Index: paths are relative to: B:\proj\galicia\public\sites\all\modules\metatags_quick
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
Index: metatags_quick.module
--- metatags_quick.module Base (BASE)
+++ metatags_quick.module Locally Modified (Based On LOCAL)
@@ -296,6 +296,11 @@
       'description' => t('Add meta to html head.'),
       'field types' => array('metatags_quick'),
     ),
+    'metatags_quick_plain' => array(
+      'label' => t('Plain text of  metatags_quick'),
+      'description' => t('Provide the content as plain text.'),
+      'field types' => array('metatags_quick'),
+    ),
   );
   return $formats;
 }
@@ -317,7 +322,12 @@
       $element = array('#markup' => '', '#printed' => TRUE);
       break;
 
+    case 'metatags_quick_plain':
+      foreach ($items as $delta => $item) {
+          $element[$delta] = array('#markup' => $item['metatags_quick']);
   }
+      break;
+  }
   return $element;
 }
 
Index: README.txt
--- README.txt Base (BASE)
+++ README.txt Locally Modified (Based On LOCAL)
@@ -45,6 +45,12 @@
 Meta name is field name. For example, if you add field field_description, resulting meta will be <meta name="description" content="<field value>"/>
 You can add several meta fields with different names.
 
+Formats:
+-------
+1. Default metatags_quick link - the default format that you mostly use for SEO support -
+    printed to the header of the HTML page.
+2. Plain text of  metatags_quick - an alternative format which displays the content as
+    a plain text format (may be used as a field in Views module, as a teaser, etc).
 
 Financial support:
 -------
