mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 19:45:25 +01:00 
			
		
		
		
	Fix the issue ref rendering for wiki (#28556)
Fix #28526, regression of * #26365 (although the author of #26365 has recent activities, but there is no response for the regression, so I proposed this quick fix and keep the fix simple to make it easier to backport to 1.21)
This commit is contained in:
		
							parent
							
								
									577421691b
								
							
						
					
					
						commit
						e4a24d6727
					
				| @ -852,7 +852,9 @@ func fullIssuePatternProcessor(ctx *RenderContext, node *html.Node) { | ||||
| } | ||||
| 
 | ||||
| func issueIndexPatternProcessor(ctx *RenderContext, node *html.Node) { | ||||
| 	if ctx.Metas == nil || ctx.Metas["mode"] == "document" { | ||||
| 	// FIXME: the use of "mode" is quite dirty and hacky, for example: what is a "document"? how should it be rendered? | ||||
| 	// The "mode" approach should be refactored to some other more clear&reliable way. | ||||
| 	if ctx.Metas == nil || (ctx.Metas["mode"] == "document" && !ctx.IsWiki) { | ||||
| 		return | ||||
| 	} | ||||
| 	var ( | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user