function isSimpleTag()

in geronimo-microprofile-site/src/main/jbake/assets/js/geronimo.js [3:6]


  function isSimpleTag(content, tagName) {
    var endTag = '</' + tagName + '>';
    return content.indexOf('<' + tagName + '>') === 0 && content.indexOf(endTag) === content.length - endTag.length;
  }