9

I have a website in docusaurus v1 that I am migrating to v2.

It has several docs in .md format with embedded HTML tags.

After the migration, the website won't load due to invalid tags.

enter image description here

Is it possible to disable this JSX validation in v2 and have the same behavior I have in v1?

ThiagoAlves
  • 1,313
  • 16
  • 25
  • I'd also like to know if there's a solution to this. We're aggregating a lot of documentation and some doesn't always have perfect html. Would be good to avoid going back to source for all of them. – robinbetts Jan 28 '21 at 17:30

1 Answers1

-1

According to the error message, you are just lacking the closing tag for the HTML element <td>, which is </td>. Add it and you'll be fine.

The docusaurus error messages are amazingly clear. Follow the instructions to solve the issues.

randomv
  • 218
  • 1
  • 7