function bs_shortcodes_shortcode_abbreviation_tip in Bootstrap Theme Shortcodes 7        
                          
                  
                        
1 string reference to 'bs_shortcodes_shortcode_abbreviation_tip'
  - bs_shortcodes_shortcode_info in ./bs_shortcodes.module
File
 
   - inc/elements/abbreviation.php, line 19
Code
function bs_shortcodes_shortcode_abbreviation_tip($format, $long) {
  $output = array();
  $output[] = '<p><strong>' . t('[abbreviation title="HyperText Markup Language"]HTML[/abbreviation]') . '</strong>';
  if ($long) {
    $output[] = t('Wraps content as a styled abbreviation.') . '</p>';
    $output[] = '<p> </p>';
  }
  else {
    $output[] = t('Wraps content as a styled abbreviation.') . '</p>';
  }
  return implode(' ', $output);
}