mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:22:43 +00:00 
			
		
		
		
	 6ec625d6f3
			
		
	
	
		6ec625d6f3
		
	
	
	
	
		
			
			This is a simple command that can be used to display HTML from a given file, or from the standard input, in an HtmlView. It replaces the `tho` (test HTML output) command.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			168 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			168 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include ../../Makefile.common
 | |
| 
 | |
| LIBRARY = libhtml.a
 | |
| 
 | |
| all: $(LIBRARY)
 | |
| 
 | |
| include Makefile.shared
 | |
| 
 | |
| $(LIBRARY): $(LIBHTML_OBJS)
 | |
| 	@echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS)
 |