diff --git a/drupalorg/drupalorg.module b/drupalorg/drupalorg.module
index 048e885..eb7efc3 100755
--- a/drupalorg/drupalorg.module
+++ b/drupalorg/drupalorg.module
@@ -4197,9 +4197,15 @@ function drupalorg_menu_local_tasks_alter(&$data, $router_item, $root_path) {
       break;
   }
 
-  // Hide the View link on node pages in guides.
+  // Hide the View link on node pages in guides, and all tabs for imported
+  // AsciiDoc nodes.
   if (isset($data['tabs'][0]['output'][0]['#link']['path']) && $data['tabs'][0]['output'][0]['#link']['path'] === 'node/%/view' && ($context = og_context()) && ($group = node_load($context['gid'])) && $group->type === 'guide') {
     unset($data['tabs'][0]['output'][0]);
+    // Check to see if it is an AsciiDoc imported node.
+    $node = $router_item['page_arguments'][0];
+    if (!empty($node->field_asciidoc_source_file)) {
+      $data['tabs'] = array();
+    }
   }
 }
 
diff --git a/features/drupalorg_documentation/drupalorg_documentation.features.field_base.inc b/features/drupalorg_documentation/drupalorg_documentation.features.field_base.inc
index ccb3dfe..f6252b0 100644
--- a/features/drupalorg_documentation/drupalorg_documentation.features.field_base.inc
+++ b/features/drupalorg_documentation/drupalorg_documentation.features.field_base.inc
@@ -10,6 +10,27 @@
 function drupalorg_documentation_field_default_field_bases() {
   $field_bases = array();
 
+  // Exported field_base: 'field_asciidoc_source_file'.
+  $field_bases['field_asciidoc_source_file'] = array(
+    'active' => 1,
+    'cardinality' => 1,
+    'deleted' => 0,
+    'entity_types' => array(),
+    'field_name' => 'field_asciidoc_source_file',
+    'indexes' => array(
+      'format' => array(
+        0 => 'format',
+      ),
+    ),
+    'locked' => 0,
+    'module' => 'text',
+    'settings' => array(
+      'max_length' => 255,
+    ),
+    'translatable' => 0,
+    'type' => 'text',
+  );
+
   // Exported field_base: 'field_documentation_changes'.
   $field_bases['field_documentation_changes'] = array(
     'active' => 1,
diff --git a/features/drupalorg_documentation/drupalorg_documentation.features.field_instance.inc b/features/drupalorg_documentation/drupalorg_documentation.features.field_instance.inc
index c805ec5..fe70d91 100644
--- a/features/drupalorg_documentation/drupalorg_documentation.features.field_instance.inc
+++ b/features/drupalorg_documentation/drupalorg_documentation.features.field_instance.inc
@@ -209,6 +209,62 @@ function drupalorg_documentation_field_default_field_instances() {
     ),
   );
 
+  // Exported field_instance: 'node-documentation-field_asciidoc_source_file'.
+  $field_instances['node-documentation-field_asciidoc_source_file'] = array(
+    'bundle' => 'documentation',
+    'default_value' => NULL,
+    'deleted' => 0,
+    'description' => 'If you import from AsciiDoc output using Feeds, this will be set.',
+    'display' => array(
+      'default' => array(
+        'label' => 'above',
+        'module' => 'text',
+        'settings' => array(),
+        'type' => 'text_default',
+        'weight' => 7,
+      ),
+      'issuemetadata' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
+      'nodechanges' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
+      'related_content' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
+      'teaser' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
+    ),
+    'entity_type' => 'node',
+    'field_name' => 'field_asciidoc_source_file',
+    'label' => 'AsciiDoc Source File',
+    'required' => 0,
+    'settings' => array(
+      'text_processing' => 0,
+      'user_register_form' => FALSE,
+    ),
+    'widget' => array(
+      'active' => 1,
+      'module' => 'field_extrawidgets',
+      'settings' => array(),
+      'type' => 'field_extrawidgets_hidden',
+      'weight' => 13,
+    ),
+  );
+
   // Exported field_instance: 'node-documentation-field_documentation_status'.
   $field_instances['node-documentation-field_documentation_status'] = array(
     'bundle' => 'documentation',
@@ -673,6 +729,62 @@ function drupalorg_documentation_field_default_field_instances() {
     ),
   );
 
+  // Exported field_instance: 'node-guide-field_asciidoc_source_file'.
+  $field_instances['node-guide-field_asciidoc_source_file'] = array(
+    'bundle' => 'guide',
+    'default_value' => NULL,
+    'deleted' => 0,
+    'description' => 'If you import from AsciiDoc output using Feeds, this will be set.',
+    'display' => array(
+      'default' => array(
+        'label' => 'above',
+        'module' => 'text',
+        'settings' => array(),
+        'type' => 'text_default',
+        'weight' => 8,
+      ),
+      'issuemetadata' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
+      'nodechanges' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
+      'related_content' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
+      'teaser' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
+    ),
+    'entity_type' => 'node',
+    'field_name' => 'field_asciidoc_source_file',
+    'label' => 'AsciiDoc Source File',
+    'required' => 0,
+    'settings' => array(
+      'text_processing' => 0,
+      'user_register_form' => FALSE,
+    ),
+    'widget' => array(
+      'active' => 1,
+      'module' => 'field_extrawidgets',
+      'settings' => array(),
+      'type' => 'field_extrawidgets_hidden',
+      'weight' => 14,
+    ),
+  );
+
   // Exported field_instance: 'node-guide-field_guide_status'.
   $field_instances['node-guide-field_guide_status'] = array(
     'bundle' => 'guide',
@@ -1137,6 +1249,7 @@ function drupalorg_documentation_field_default_field_instances() {
 
   // Translatables
   // Included for use with string extractors like potx.
+  t('AsciiDoc Source File');
   t('Body');
   t('Description');
   t('Description of the guide and its contents.');
@@ -1147,6 +1260,7 @@ function drupalorg_documentation_field_default_field_instances() {
   t('Group');
   t('Guide');
   t('Guide changes');
+  t('If you import from AsciiDoc output using Feeds, this will be set.');
   t('Related content');
   t('Related content for this documentation guide. These can be other documentation guides, pages, posts or book listings.');
   t('Short (up to 140 characters) summary of the content. This will be displayed in search results, meta tags, content listings.');
diff --git a/features/drupalorg_documentation/drupalorg_documentation.features.filter.inc b/features/drupalorg_documentation/drupalorg_documentation.features.filter.inc
index e69de29..da07ab5 100644
--- a/features/drupalorg_documentation/drupalorg_documentation.features.filter.inc
+++ b/features/drupalorg_documentation/drupalorg_documentation.features.filter.inc
@@ -0,0 +1,30 @@
+<?php
+/**
+ * @file
+ * drupalorg_documentation.features.filter.inc
+ */
+
+/**
+ * Implements hook_filter_default_formats().
+ */
+function drupalorg_documentation_filter_default_formats() {
+  $formats = array();
+
+  // Exported format: Asciidoc Import.
+  $formats['asciidoc_import'] = array(
+    'format' => 'asciidoc_import',
+    'name' => 'Asciidoc Import',
+    'cache' => 1,
+    'status' => 1,
+    'weight' => 0,
+    'filters' => array(
+      'filter_htmlcorrector' => array(
+        'weight' => 10,
+        'status' => 1,
+        'settings' => array(),
+      ),
+    ),
+  );
+
+  return $formats;
+}
diff --git a/features/drupalorg_documentation/drupalorg_documentation.features.inc b/features/drupalorg_documentation/drupalorg_documentation.features.inc
index 6b2532f..f9e75c0 100644
--- a/features/drupalorg_documentation/drupalorg_documentation.features.inc
+++ b/features/drupalorg_documentation/drupalorg_documentation.features.inc
@@ -11,6 +11,9 @@ function drupalorg_documentation_ctools_plugin_api($module = NULL, $api = NULL)
   if ($module == "ctools_custom_content" && $api == "ctools_content") {
     return array("version" => "1");
   }
+  if ($module == "feeds" && $api == "feeds_importer_default") {
+    return array("version" => "1");
+  }
   if ($module == "page_manager" && $api == "pages_default") {
     return array("version" => "1");
   }
diff --git a/features/drupalorg_documentation/drupalorg_documentation.feeds_importer_default.inc b/features/drupalorg_documentation/drupalorg_documentation.feeds_importer_default.inc
index e69de29..159e455 100644
--- a/features/drupalorg_documentation/drupalorg_documentation.feeds_importer_default.inc
+++ b/features/drupalorg_documentation/drupalorg_documentation.feeds_importer_default.inc
@@ -0,0 +1,307 @@
+<?php
+/**
+ * @file
+ * drupalorg_documentation.feeds_importer_default.inc
+ */
+
+/**
+ * Implements hook_feeds_importer_default().
+ */
+function drupalorg_documentation_feeds_importer_default() {
+  $export = array();
+
+  $feeds_importer = new stdClass();
+  $feeds_importer->disabled = FALSE; /* Edit this to true to make a default feeds_importer disabled initially */
+  $feeds_importer->api_version = 1;
+  $feeds_importer->id = 'asciidoc_user_guide';
+  $feeds_importer->config = array(
+    'name' => 'AsciiDoc User Guide',
+    'description' => 'Imports the AsciiDoc output of the User Guide into a Documentation Guide',
+    'fetcher' => array(
+      'plugin_key' => 'AsciiDocFetcher',
+      'config' => array(
+        'allowed_extensions' => 'html',
+        'direct' => TRUE,
+        'translated' => 1,
+        'source_language' => 'en',
+        'copyright_file' => 'copyright.html',
+        'source_directory' => '/usr/local/user_guide_source/source/',
+        'source_field' => 'field_asciidoc_source_file',
+        'source_message' => 'This page is generated from <a href="http://asciidoc.org/">AsciiDoc</a> source from the <a href="https://www.drupal.org/project_user_guide">User Guide</a>. To propose a change, edit the source and attach the file to a <a href="https://www.drupal.org/node/add/project_issue/user_guide">new issue in the User Guide project</a>.',
+        'delete_uploaded_file' => FALSE,
+        'directory' => 'public://feeds',
+        'allowed_schemes' => array(
+          0 => 'public',
+        ),
+      ),
+    ),
+    'parser' => array(
+      'plugin_key' => 'AsciiDocParser',
+      'config' => array(
+        'internal_link_prefix' => '/docs/user_guide/[LANG]/',
+        'internal_image_prefix' => '/files/docs/user_guide/[LANG]/',
+        'show_toc' => 0,
+        'add_copyright' => 0,
+        'remove_titles' => 1,
+        'guid_prefix' => 'asciidoc_user_guide',
+      ),
+    ),
+    'processor' => array(
+      'plugin_key' => 'FeedsNodeProcessor',
+      'config' => array(
+        'expire' => '-1',
+        'author' => '180064',
+        'authorize' => 0,
+        'mappings' => array(
+          0 => array(
+            'source' => 'guid',
+            'target' => 'guid',
+            'unique' => 1,
+            'language' => 'und',
+          ),
+          1 => array(
+            'source' => 'langcode',
+            'target' => 'language',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          2 => array(
+            'source' => 'type',
+            'target' => 'asciidoc_content_type',
+            'chapter' => 'guide',
+            'book' => 'guide',
+            'language' => 'und',
+          ),
+          3 => array(
+            'source' => 'source_guid',
+            'target' => 'asciidoc_tnid',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          4 => array(
+            'source' => 'title',
+            'target' => 'title',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          5 => array(
+            'source' => 'summary',
+            'target' => 'field_summary',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          6 => array(
+            'source' => 'output_file',
+            'target' => 'asciidoc_alias',
+            'path_prefix' => 'docs/user_guide/[LANG]/',
+          ),
+          7 => array(
+            'source' => 'body',
+            'target' => 'body',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          8 => array(
+            'source' => 'images',
+            'target' => 'asciidoc_files',
+            'directory' => 'docs/user_guide/[LANG]/images/',
+            'exists_behavior' => '1',
+            'language' => 'und',
+          ),
+          9 => array(
+            'source' => 'source_file',
+            'target' => 'field_asciidoc_source_file',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          10 => array(
+            'source' => 'title',
+            'target' => 'asciidoc_comment_settings',
+            'comment_settings' => '0',
+            'language' => 'und',
+          ),
+          11 => array(
+            'source' => 'parent_guid',
+            'target' => 'og_group_ref_documentation',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          12 => array(
+            'source' => 'title',
+            'target' => 'asciidoc_menu_title',
+            'menu_name' => '',
+            'language' => 'und',
+          ),
+          13 => array(
+            'source' => 'parent_weight',
+            'target' => 'asciidoc_menu_entry_weight',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          14 => array(
+            'source' => 'parent_guid',
+            'target' => 'asciidoc_menu_og_guid',
+            'remove_if_blank' => 1,
+            'language' => 'und',
+          ),
+        ),
+        'insert_new' => '1',
+        'update_existing' => '2',
+        'update_non_existent' => 'delete',
+        'input_format' => 'asciidoc_import',
+        'skip_hash_check' => 0,
+        'bundle' => 'documentation',
+        'language' => 'und',
+      ),
+    ),
+    'content_type' => '',
+    'update' => 0,
+    'import_period' => '-1',
+    'expire_period' => 3600,
+    'import_on_create' => 1,
+    'process_in_background' => 0,
+  );
+  $export['asciidoc_user_guide'] = $feeds_importer;
+
+  $feeds_importer = new stdClass();
+  $feeds_importer->disabled = FALSE; /* Edit this to true to make a default feeds_importer disabled initially */
+  $feeds_importer->api_version = 1;
+  $feeds_importer->id = 'asciidoc_user_guide_guidelines';
+  $feeds_importer->config = array(
+    'name' => 'AsciiDoc Contributor Guide',
+    'description' => 'Contributor guide for the User Guide project',
+    'fetcher' => array(
+      'plugin_key' => 'AsciiDocFetcher',
+      'config' => array(
+        'allowed_extensions' => 'html',
+        'direct' => TRUE,
+        'translated' => 0,
+        'source_language' => 'en',
+        'copyright_file' => 'copyright.html',
+        'source_directory' => '/usr/local/user_guide_source/guidelines',
+        'source_field' => 'field_asciidoc_source_file',
+        'source_message' => 'This page is generated from <a href="http://asciidoc.org/">AsciiDoc</a> source from the <a href="https://www.drupal.org/project_user_guide">User Guide</a>. To propose a change, edit the source and attach the file to a <a href="https://www.drupal.org/node/add/project_issue/user_guide">new issue in the User Guide project</a>.',
+        'delete_uploaded_file' => FALSE,
+        'directory' => 'public://feeds',
+        'allowed_schemes' => array(
+          0 => 'public',
+        ),
+      ),
+    ),
+    'parser' => array(
+      'plugin_key' => 'AsciiDocParser',
+      'config' => array(
+        'internal_link_prefix' => '/docs/user_guide_guidelines/',
+        'internal_image_prefix' => '/files/docs/user_guide/guidelines/',
+        'show_toc' => 0,
+        'add_copyright' => 0,
+        'remove_titles' => 1,
+        'guid_prefix' => 'asciidoc_user_guide_guidelines',
+      ),
+    ),
+    'processor' => array(
+      'plugin_key' => 'FeedsNodeProcessor',
+      'config' => array(
+        'expire' => '-1',
+        'author' => '180064',
+        'authorize' => 0,
+        'mappings' => array(
+          0 => array(
+            'source' => 'guid',
+            'target' => 'guid',
+            'unique' => 1,
+            'language' => 'und',
+          ),
+          1 => array(
+            'source' => 'type',
+            'target' => 'asciidoc_content_type',
+            'chapter' => 'guide',
+            'book' => 'guide',
+            'language' => 'und',
+          ),
+          2 => array(
+            'source' => 'title',
+            'target' => 'title',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          3 => array(
+            'source' => 'summary',
+            'target' => 'field_summary',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          4 => array(
+            'source' => 'output_file',
+            'target' => 'asciidoc_alias',
+            'path_prefix' => 'docs/user_guide_guidelines/',
+          ),
+          5 => array(
+            'source' => 'body',
+            'target' => 'body',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          6 => array(
+            'source' => 'images',
+            'target' => 'asciidoc_files',
+            'directory' => 'docs/user_guide/guidelines/images/',
+            'exists_behavior' => '1',
+          ),
+          7 => array(
+            'source' => 'source_file',
+            'target' => 'field_asciidoc_source_file',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          8 => array(
+            'source' => 'title',
+            'target' => 'asciidoc_comment_settings',
+            'comment_settings' => '0',
+            'language' => 'und',
+          ),
+          9 => array(
+            'source' => 'parent_guid',
+            'target' => 'og_group_ref_documentation',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          10 => array(
+            'source' => 'title',
+            'target' => 'asciidoc_menu_title',
+            'menu_name' => '',
+            'language' => 'und',
+          ),
+          11 => array(
+            'source' => 'parent_weight',
+            'target' => 'asciidoc_menu_entry_weight',
+            'unique' => FALSE,
+            'language' => 'und',
+          ),
+          12 => array(
+            'source' => 'parent_guid',
+            'target' => 'asciidoc_menu_og_guid',
+            'remove_if_blank' => 1,
+            'language' => 'und',
+          ),
+        ),
+        'insert_new' => '1',
+        'update_existing' => '2',
+        'update_non_existent' => 'delete',
+        'input_format' => 'asciidoc_import',
+        'skip_hash_check' => 0,
+        'bundle' => 'documentation',
+        'language' => 'en',
+      ),
+    ),
+    'content_type' => '',
+    'update' => 0,
+    'import_period' => '-1',
+    'expire_period' => 3600,
+    'import_on_create' => 1,
+    'process_in_background' => 0,
+  );
+  $export['asciidoc_user_guide_guidelines'] = $feeds_importer;
+
+  return $export;
+}
diff --git a/features/drupalorg_documentation/drupalorg_documentation.info b/features/drupalorg_documentation/drupalorg_documentation.info
index 35529e7..8a0d2b4 100644
--- a/features/drupalorg_documentation/drupalorg_documentation.info
+++ b/features/drupalorg_documentation/drupalorg_documentation.info
@@ -4,14 +4,18 @@ core = 7.x
 package = Features
 version = 7.x-3.x-dev
 project = drupalorg
+dependencies[] = asciidoc_display
+dependencies[] = asciidoc_display_feeds
 dependencies[] = ctools
 dependencies[] = drupalorg_change_notice
 dependencies[] = drupalorg_content_types
 dependencies[] = drupalorg_marketplace
 dependencies[] = entityreference
 dependencies[] = features
+dependencies[] = feeds
 dependencies[] = field_extrawidgets
 dependencies[] = file
+dependencies[] = filter
 dependencies[] = list
 dependencies[] = metatag
 dependencies[] = nodechanges
@@ -28,11 +32,15 @@ dependencies[] = views
 dependencies[] = views_content
 datestamp = 1473961012
 features[ctools][] = ctools_custom_content:ctools_content:1
+features[ctools][] = feeds:feeds_importer_default:1
 features[ctools][] = page_manager:pages_default:1
 features[ctools][] = panelizer:panelizer:1
 features[ctools][] = strongarm:strongarm:1
 features[ctools][] = views:views_default:3.0
 features[features_api][] = api:2
+features[feeds_importer][] = asciidoc_user_guide
+features[feeds_importer][] = asciidoc_user_guide_guidelines
+features[field_base][] = field_asciidoc_source_file
 features[field_base][] = field_documentation_changes
 features[field_base][] = field_documentation_status
 features[field_base][] = field_guide_changes
@@ -46,6 +54,7 @@ features[field_instance][] = comment-comment_node_documentation-field_documentat
 features[field_instance][] = comment-comment_node_guide-comment_body
 features[field_instance][] = comment-comment_node_guide-field_guide_changes
 features[field_instance][] = node-documentation-body
+features[field_instance][] = node-documentation-field_asciidoc_source_file
 features[field_instance][] = node-documentation-field_documentation_status
 features[field_instance][] = node-documentation-field_related_content
 features[field_instance][] = node-documentation-field_summary
@@ -53,6 +62,7 @@ features[field_instance][] = node-documentation-field_tags
 features[field_instance][] = node-documentation-og_group_ref_documentation
 features[field_instance][] = node-documentation-upload
 features[field_instance][] = node-guide-body
+features[field_instance][] = node-guide-field_asciidoc_source_file
 features[field_instance][] = node-guide-field_guide_status
 features[field_instance][] = node-guide-field_related_content
 features[field_instance][] = node-guide-field_summary
@@ -60,6 +70,7 @@ features[field_instance][] = node-guide-field_tags
 features[field_instance][] = node-guide-group_group
 features[field_instance][] = node-guide-og_group_ref_documentation
 features[field_instance][] = node-guide-upload
+features[filter][] = asciidoc_import
 features[metatag][] = node:documentation
 features[metatag][] = node:guide
 features[node][] = documentation
diff --git a/features/drupalorg_documentation/drupalorg_documentation.panelizer.inc b/features/drupalorg_documentation/drupalorg_documentation.panelizer.inc
index c477ae7..0b8ce94 100644
--- a/features/drupalorg_documentation/drupalorg_documentation.panelizer.inc
+++ b/features/drupalorg_documentation/drupalorg_documentation.panelizer.inc
@@ -292,6 +292,29 @@ function drupalorg_documentation_panelizer_defaults() {
   $pane->uuid = '30529426-7058-4214-a44a-82fde63c7806';
   $display->content['new-30529426-7058-4214-a44a-82fde63c7806'] = $pane;
   $display->panels['top_right_content'][0] = 'new-30529426-7058-4214-a44a-82fde63c7806';
+  $pane = new stdClass();
+  $pane->pid = 'new-caacb2f4-f248-4728-be49-8de5d92944b8';
+  $pane->panel = 'top_right_content';
+  $pane->type = 'block';
+  $pane->subtype = 'asciidoc_display_feeds-page_edit';
+  $pane->shown = TRUE;
+  $pane->access = array();
+  $pane->configuration = array(
+    'override_title' => 0,
+    'override_title_text' => '',
+    'override_title_heading' => 'h2',
+  );
+  $pane->cache = array();
+  $pane->style = array(
+    'settings' => NULL,
+  );
+  $pane->css = array();
+  $pane->extras = array();
+  $pane->position = 1;
+  $pane->locks = array();
+  $pane->uuid = 'caacb2f4-f248-4728-be49-8de5d92944b8';
+  $display->content['new-caacb2f4-f248-4728-be49-8de5d92944b8'] = $pane;
+  $display->panels['top_right_content'][1] = 'new-caacb2f4-f248-4728-be49-8de5d92944b8';
   $display->hide_title = PANELS_TITLE_NONE;
   $display->title_pane = '0';
   $panelizer->display = $display;
@@ -622,6 +645,29 @@ function drupalorg_documentation_panelizer_defaults() {
   $pane->uuid = 'c51c42f6-5f91-44e6-a324-9f0838a464bc';
   $display->content['new-c51c42f6-5f91-44e6-a324-9f0838a464bc'] = $pane;
   $display->panels['top_right_content'][0] = 'new-c51c42f6-5f91-44e6-a324-9f0838a464bc';
+  $pane = new stdClass();
+  $pane->pid = 'new-5a7d8088-5d0d-4334-b7a3-1f68652f6f12';
+  $pane->panel = 'top_right_content';
+  $pane->type = 'block';
+  $pane->subtype = 'asciidoc_display_feeds-page_edit';
+  $pane->shown = TRUE;
+  $pane->access = array();
+  $pane->configuration = array(
+    'override_title' => 0,
+    'override_title_text' => '',
+    'override_title_heading' => 'h2',
+  );
+  $pane->cache = array();
+  $pane->style = array(
+    'settings' => NULL,
+  );
+  $pane->css = array();
+  $pane->extras = array();
+  $pane->position = 1;
+  $pane->locks = array();
+  $pane->uuid = '5a7d8088-5d0d-4334-b7a3-1f68652f6f12';
+  $display->content['new-5a7d8088-5d0d-4334-b7a3-1f68652f6f12'] = $pane;
+  $display->panels['top_right_content'][1] = 'new-5a7d8088-5d0d-4334-b7a3-1f68652f6f12';
   $display->hide_title = PANELS_TITLE_NONE;
   $display->title_pane = '0';
   $panelizer->display = $display;
