mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 00:54:43 +01:00 
			
		
		
		
	HTML-escape text READMEs (#4192)
This commit is contained in:
		
							parent
							
								
									af57d6ab8a
								
							
						
					
					
						commit
						2bb73fe12c
					
				| @ -105,7 +105,9 @@ func renderDirectory(ctx *context.Context, treeLink string) { | ||||
| 					ctx.Data["FileContent"] = string(markup.Render(readmeFile.Name(), buf, treeLink, ctx.Repo.Repository.ComposeMetas())) | ||||
| 				} else { | ||||
| 					ctx.Data["IsRenderedHTML"] = true | ||||
| 					ctx.Data["FileContent"] = string(bytes.Replace(buf, []byte("\n"), []byte(`<br>`), -1)) | ||||
| 					ctx.Data["FileContent"] = strings.Replace( | ||||
| 						gotemplate.HTMLEscapeString(string(buf)), "\n", `<br>`, -1, | ||||
| 					) | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| @ -208,7 +210,9 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st | ||||
| 			ctx.Data["FileContent"] = string(markup.Render(blob.Name(), buf, path.Dir(treeLink), ctx.Repo.Repository.ComposeMetas())) | ||||
| 		} else if readmeExist { | ||||
| 			ctx.Data["IsRenderedHTML"] = true | ||||
| 			ctx.Data["FileContent"] = string(bytes.Replace(buf, []byte("\n"), []byte(`<br>`), -1)) | ||||
| 			ctx.Data["FileContent"] = strings.Replace( | ||||
| 				gotemplate.HTMLEscapeString(string(buf)), "\n", `<br>`, -1, | ||||
| 			) | ||||
| 		} else { | ||||
| 			// Building code view blocks with line number on server side. | ||||
| 			var fileContent string | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user