15 lines
		
	
	
		
			328 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			328 B
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| # For testing excerpt handling of custom tags
 | |
| 
 | |
| module Jekyll
 | |
|   class DoNothingBlock < Liquid::Block
 | |
|   end
 | |
| 
 | |
|   class DoNothingOther < Liquid::Tag
 | |
|   end
 | |
| end
 | |
| 
 | |
| Liquid::Template.register_tag("do_nothing", Jekyll::DoNothingBlock)
 | |
| Liquid::Template.register_tag("do_nothing_other", Jekyll::DoNothingOther)
 |