13 lines
		
	
	
		
			293 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			293 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var rehype = require('rehype');
 | 
						|
var vfile = require('vfile');
 | 
						|
 | 
						|
var getComments = require('./plugins/get-script-js-comments');
 | 
						|
 | 
						|
const processor = rehype().use(getComments);
 | 
						|
 | 
						|
function extractComments(html) {
 | 
						|
  return processor.processSync(vfile(html)).data;
 | 
						|
}
 | 
						|
 | 
						|
module.exports = extractComments;
 |