mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Markdown rendering overhaul (#186)
* Markdown rendering overhaul Cleaned up and squashed commits into single one. Signed-off-by: Andrew Boyarshin <boyarshinand@gmail.com> * Fix markdown API, add markdown module and API tests, improve code coverage Signed-off-by: Andrew Boyarshin <boyarshinand@gmail.com>
This commit is contained in:
		
				
					committed by
					
						 Lunny Xiao
						Lunny Xiao
					
				
			
			
				
	
			
			
			
						parent
						
							5cc275b1de
						
					
				
				
					commit
					dc8248f8a4
				
			| @@ -9,6 +9,7 @@ import ( | ||||
|  | ||||
| 	"code.gitea.io/gitea/modules/context" | ||||
| 	"code.gitea.io/gitea/modules/markdown" | ||||
| 	"code.gitea.io/gitea/modules/setting" | ||||
| ) | ||||
|  | ||||
| // Markdown render markdown document to HTML | ||||
| @@ -26,9 +27,9 @@ func Markdown(ctx *context.APIContext, form api.MarkdownOption) { | ||||
|  | ||||
| 	switch form.Mode { | ||||
| 	case "gfm": | ||||
| 		ctx.Write(markdown.Render([]byte(form.Text), form.Context, nil)) | ||||
| 		ctx.Write(markdown.Render([]byte(form.Text), markdown.URLJoin(setting.AppURL, form.Context), nil)) | ||||
| 	default: | ||||
| 		ctx.Write(markdown.RenderRaw([]byte(form.Text), "")) | ||||
| 		ctx.Write(markdown.RenderRaw([]byte(form.Text), "", false)) | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @@ -40,5 +41,5 @@ func MarkdownRaw(ctx *context.APIContext) { | ||||
| 		ctx.Error(422, "", err) | ||||
| 		return | ||||
| 	} | ||||
| 	ctx.Write(markdown.RenderRaw(body, "")) | ||||
| 	ctx.Write(markdown.RenderRaw(body, "", false)) | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user