mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			196 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			196 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
// +build go1.1,!go1.12
 | 
						|
 | 
						|
package bluemonday
 | 
						|
 | 
						|
import "io"
 | 
						|
 | 
						|
type stringWriterWriter interface {
 | 
						|
	io.Writer
 | 
						|
	StringWriter
 | 
						|
}
 | 
						|
 | 
						|
type StringWriter interface {
 | 
						|
	WriteString(s string) (n int, err error)
 | 
						|
}
 |