mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-30 19:08:37 +00:00 
			
		
		
		
	Fix table alignment in markdown (#16596)
Set the TableOptions in markdown to allow alignment of the tables to work correctly Fix #15959 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		| @@ -87,7 +87,9 @@ func newParserContext(ctx *markup.RenderContext) parser.Context { | ||||
| func actualRender(ctx *markup.RenderContext, input io.Reader, output io.Writer) error { | ||||
| 	once.Do(func() { | ||||
| 		converter = goldmark.New( | ||||
| 			goldmark.WithExtensions(extension.Table, | ||||
| 			goldmark.WithExtensions( | ||||
| 				extension.NewTable( | ||||
| 					extension.WithTableCellAlignMethod(extension.TableCellAlignAttribute)), | ||||
| 				extension.Strikethrough, | ||||
| 				extension.TaskList, | ||||
| 				extension.DefinitionList, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user