• Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <br> <table> <tr> <td> <tbody> <i> <swf><!-- -->

  • Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.
  • Flash node macros can be added to this post.
  • SSP slideshows can be added to this post. Example: [ssp|path=path/to/your/ssp/feed|width=300|height=200].
  • You may link to files uploaded with the current node using special tags. The tags will be replaced by the corresponding files. For example: Suppose you uploaded three files (in this order):

    • imag1.png (referred as file #1)
    • file1.pdf (referred as file #2)
    • imag2.png (referred as file #3)
    [inline:1=test]  or  [inline:imag1.png=test]
    will be replaced by <img src=imag1.png alt=test>
    [file:1=test]  or  [file:imag1.png=test]
    will be replaced by <a href=imag1.png>test</a>
    [attachment:2=test]  or  [attachment:file1.pdf=test]
    will be replaced by <a href=file1.pdf.png>test</a>
  • Images can be added to this post.
  • Image links from G2 are formatted for use with Lightbox.V2
  • To add a lightbox to your images, add rel="lightbox" attribute to any link tag to activate the lightbox. For example:

    <a href="image-1.jpg" rel="lightbox" title="my caption">image #1</a>

    The title attribute in the link tag is optional. The addition of this attribute enables the display of a caption with the image displayed in the lightbox.

    If you have a set of related images that you would like to group, then you will need to include a group name between square brackets in the rel attribute. For example:

    <a href="image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
    <a href="image-2.jpg" rel="lightbox[roadtrip]">image #2</a>
    <a href="image-3.jpg" rel="lightbox[roadtrip]">image #3</a>

    There are no limits to the number of image sets per page or how many images are allowed in each set.

    If you wish to turn the caption into a link, format your caption in the following way:

    <a href="image-1.jpg" rel="lightbox" title='<a href="http://www.yourlink.com">View Image Details</a>'>image #1</a>

  • Using custom PHP code

    If you know how to script in PHP, Drupal gives you the power to embed any script you like. It will be executed when the page is viewed and dynamically embedded into the page. This gives you amazing flexibility and power, but of course with that comes danger and insecurity if you do not write good code. If you are not familiar with PHP, SQL or with the site engine, avoid experimenting with PHP because you can corrupt your database or render your site insecure or even unusable! If you do not plan to do fancy stuff with your content then you are probably better off with straight HTML.

    Remember that the code within each PHP item must be valid PHP code - including things like correctly terminating statements with a semicolon. It is highly recommended that you develop your code separately using a simple test script on top of a test database before migrating to your production environment.

    Notes:

    • You can use global variables, such as configuration parameters, within the scope of your PHP code but remember that global variables which have been given values in your code will retain these values in the engine afterwards.
    • register_globals is now set to off by default. If you need form information you need to get it from the "superglobals" $_POST, $_GET, etc.
    • You can either use the print or return statement to output the actual content for your item.

    A basic example:

    You want to have a box with the title "Welcome" that you use to greet your visitors. The content for this box could be created by going:

      print t("Welcome visitor, ... welcome message goes here ...");
    

    If we are however dealing with a registered user, we can customize the message by using:

      global $user;
      if ($user->uid) {
        print t("Welcome $user->name, ... welcome message goes here ...");
      }
      else {
        print t("Welcome visitor, ... welcome message goes here ...");
      }
    

    For more in-depth examples, we recommend that you check the existing Drupal code and use it as a starting point, especially for sidebar boxes.

  • Paging Help

    Break long pages into smaller ones by means of a "page" tag:

    first page here.
    <!--pagebreak-->
    second page here.
    <!--pagebreak-->
    more pages here.
    
  • Flash Filter

    The basic syntax for embedding a flash file (.swf), flash movie (.flv) or audio file (.mp3) is:

    [flash:filename.swf]

    If you would like to override SWF Tools and flash player default settings, you can specify additional parameters. For example:

    Flash Filter will accept following parameters:
    • params : You can specify values for output inside <param> tags with the <embed> html. Typical values are bgcolor and wmode. Example: params="wmode=true&&bgcolor=#00FF00"
    • flashvars : You can specify values for output as flashvars, which become available to the flash player. Refer to the documentation of the flash player you are using to know what flashvar options are available. Example: flashvars="autostart=true&&volume=80"
    • files : Optional list of files to be passed, you'll normally define files relative to your Drupal files directory. Example: files="name1=image.jpg&&name2=movie.flv"
    • methods : Optional information about how to display the file. The most common usage is to specify a particular media player and thus override the settings page. Example: methods="player=onepixelout_mp3"

    WARNING: with params, flashvars and othervars, pass multiple values separated by &&.