Use' . '

' . t('Include in form generating functions') . ':
drupal_add_library(\'judy\', \'judy\');

' . '

Documentation

' . '

' . l( t('Full jsDoc documentation of the library'), 'http://www.simple-complex.net/docs/drupal/modules/judy/js/symbols/Judy.html' ) . '

'; } } /** * Makes the modules' Javascript library available for inclusion. * * Implements hook_library(). * * @code * drupal_add_library('judy', 'judy'); * @endcode * @return array */ function judy_library() { $path = drupal_get_path('module', 'judy'); return array( 'judy' => array( 'title' => 'Judy Javascript Utilities', 'website' => 'http://drupal.org/project/judy', 'version' => 2.1, 'js' => array( $path . '/judy' . '.min' . '.js' => array(), ), 'css' => array( $path . '/judy' . '.min' . '.css' => array(), ), ) ); }