diff -Naur subscriptions.install subscriptions.install
--- subscriptions.install	2012-02-22 09:35:42.000000000 -0800
+++ subscriptions.install	2012-03-09 16:48:27.000000000 -0800
@@ -134,6 +134,7 @@
   variable_del('subscriptions_form_in_block');
   variable_del('subscriptions_form_link_only');
   variable_del('subscriptions_generate_full_node');
+  variable_del('subscriptions_allow_html_node_output');
   variable_del('subscriptions_hide_overview_page');
   variable_del('subscriptions_link_teaser');
   variable_del('subscriptions_omitted_taxa');
diff -Naur subscriptions_content.module subscriptions_content.module
--- subscriptions_content.module	2012-02-22 09:35:42.000000000 -0800
+++ subscriptions_content.module	2012-03-09 22:39:57.000000000 -0800
@@ -345,6 +345,13 @@
     '#description'   => t('Nodes of %Static_content_types may end up with no %Subscribe options at all. Turn this option on to avoid displaying %Subscribe links in this case. The default is OFF, because this option causes processing overhead for each node view operation.', array('%Static_content_types' => t('Static content types'), '%Subscribe' => t('Subscribe'))),
   );
 
+  $form['content']['subscriptions_allow_html_node_output'] = array(
+    '#type'          => 'checkbox',
+    '#title'         => t('Allow full HTML node body output'),
+    '#default_value' => variable_get('subscriptions_allow_html_node_output', 0),
+    '#description'   => t('Node body output is stripped of all HTML tags normally. Checking this box will allow HTML tags from the node body to pass through.'),
+  );
+
   $form['content']['subscriptions_generate_full_node'] = array(
     '#type'          => 'checkbox',
     '#title'         => t('Generate the %full_node variable', array('%full_node' => '!full_node')),
@@ -671,7 +678,9 @@
   if (isset($format)) {
     $text = check_markup($text, $format, FALSE);
   }
-  $text = drupal_html_to_text($text);
+  if (!variable_get('subscriptions_allow_html_node_output', 0)) {
+    $text = drupal_html_to_text($text);
+  }
   return trim($text);
 }
 
