problem description
recently in learning Django to build a personal blog, using Ueditor (also tried Kindeditor) as the rich text editor of the background admin interface, editing some text found that part of the format can not be displayed correctly by the browser, the following is a screenshot:
check the source code of the page and find that the < H1 > tag of the title is correct, but why can the browser not display correctly?
test found that H1 and H2 can not be displayed, but h3 can display normally, the browser gets the html source file from the server is the correct tag format, why H1 and H2 can not be rendered by the browser, h3h4h5h6 and other tags can be displayed properly?
the environmental background of the problems and what methods you have tried
- Python 2.7
- Django 1.8
- MySQL 5.7
- IDE pycharm
- Browser: firefox chrome safari
both the {% autoescape off%} and the safe filter in the Django template file have been tried
I hope you can give some suggestions, Thanks!