/**
  * helper method to create a unique shortcode based on the content
  * 
  * @param  ShortcodeInterface $shortcode
  * @return string             
  */
 public function getId(ShortcodeInterface $shortcode)
 {
     return substr(md5($shortcode->getShortcodeText()), -10);
 }