We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8e9c29 commit d829aaaCopy full SHA for d829aaa
test/test.js
@@ -19,4 +19,8 @@ describe('PostHTML-Parser test', function() {
19
it('last comment', function() {
20
expect(parser('<!--comment-->')).to.eql(['<!--comment-->']);
21
});
22
+
23
+ it('doctype', function() {
24
+ expect(parser('<!doctype html><html></html>')).to.eql(['<!doctype html>', { tag: 'html' }]);
25
+ });
26
0 commit comments