*** INSTALLATION ***

1. Enable the module
2. Enable the Content Browser filter.
3. Enable the Content Browser WYSIWYG plugin (only support for TinyMCE at the moment)
4. Select insertable content types at admin/settings/contentbrowser
5. Enable the two blocks if you want to (read about them in the next section)

*** THE BLOCKS ***
Content Browser related data:
  This block is visible (if enabled) on nodes which have inserted content. ie) Node X is using Node Y.
  
Content Browser used by:
  This block is visible (if enabled) on nodes which is inserted into other nodes.
  ie) Node X is used by Node Y.


*** BUILDING YOUR OWN TEMPLATE FOR YOUR CONTENT TYPE ***

1. Create a file in your theme directory with the name content-CONTENTTYPE.tpl.php
2. Flush the theme registry.
3. Your template is assigned the following variables:
   $node - The node object
   $tag - The decoded tag.
   $from_editor - If TRUE we are withing the scope of the editor. Javascript etc shouldnt be rendered.
   $caption_data - Array with extra fields.
   
   A <?php print "<pre>" . print_r($variable, true) . "</pre>"; ?> is recommended on $tag and $caption_data to
   se exactly what it contains. Look in the example_templates directory.
4. All done.