I upgraded my project from blackfriday 1.5.0 to 2.0.0, but when I run it on the following markdown, the table fails to render now:
| Column A | Column B |
| --------- | --------- |
| A1 | B1 |
| A2 | B2 |
This is how I am calling blackfriday in 2.0.0:
content := blackfriday.Run(
[]byte(input),
blackfriday.WithExtensions(blackfriday.CommonExtensions|blackfriday.HardLineBreak|blackfriday.AutoHeadingIDs|blackfriday.Autolink),
)
Am I using the wrong options?
I upgraded my project from blackfriday 1.5.0 to 2.0.0, but when I run it on the following markdown, the table fails to render now:
This is how I am calling blackfriday in 2.0.0:
Am I using the wrong options?