We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24366ed commit 1fc7d6dCopy full SHA for 1fc7d6d
modules/markup/markdown/markdown.go
@@ -87,7 +87,9 @@ func newParserContext(ctx *markup.RenderContext) parser.Context {
87
func actualRender(ctx *markup.RenderContext, input io.Reader, output io.Writer) error {
88
once.Do(func() {
89
converter = goldmark.New(
90
- goldmark.WithExtensions(extension.Table,
+ goldmark.WithExtensions(
91
+ extension.NewTable(
92
+ extension.WithTableCellAlignMethod(extension.TableCellAlignAttribute)),
93
extension.Strikethrough,
94
extension.TaskList,
95
extension.DefinitionList,
0 commit comments