<?php
/**
 * @file
 * diy_news.features.filter.inc
 */

/**
 * Implements hook_filter_default_formats().
 */
function diy_news_filter_default_formats() {
  $formats = array();

  // Exported format: Full HTML NoFollow.
  $formats['full_html_nofollow'] = array(
    'format' => 'full_html_nofollow',
    'name' => 'Full HTML NoFollow',
    'cache' => 1,
    'status' => 1,
    'weight' => 0,
    'filters' => array(
      'filter_url' => array(
        'weight' => -48,
        'status' => 1,
        'settings' => array(
          'filter_url_length' => 72,
        ),
      ),
      'filter_html' => array(
        'weight' => -47,
        'status' => 1,
        'settings' => array(
          'allowed_html' => '<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <table> <tr> <td> <tbody> <thead> <th> <p> <h1> <h2> <h3> <h4> <h5> <h6> <br> <div> <span> ',
          'filter_html_help' => 1,
          'filter_html_nofollow' => 1,
        ),
      ),
      'filter_autop' => array(
        'weight' => -46,
        'status' => 1,
        'settings' => array(),
      ),
      'filter_htmlcorrector' => array(
        'weight' => -42,
        'status' => 1,
        'settings' => array(),
      ),
    ),
  );

  return $formats;
}
