1.0.0 • Published 9 years ago

html-non-conditional-comment-regex v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

NPM version Build Status

Regular expression for matching non conditional HTML comments

Install

$ npm install --save html-non-conditional-comment-regex

Usage

var htmlNonConditionalCommentRegex = require('html-non-conditional-comment-regex');

htmlNonConditionalCommentRegex.test('<!DOCTYPE html><!--\nnormal comment \n--><html lang="en"><head><meta charset="UTF-8"><title>Document</title></head><body></body></html>');
//=> true

htmlNonConditionalCommentRegex.test('<!DOCTYPE html><!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--><html lang="en"><head><meta charset="UTF-8"><title>Document</title></head><body></body></html>');
//=> false

License

MIT © Steve Mao