getpelican / pelican-plugins

Collection of plugins for the Pelican static site generator
Other
1.39k stars 856 forks source link

`bootstrap-rst`: Math header is an array, so should be joined not appended #1393

Closed robtaylor closed 8 months ago

robtaylor commented 8 months ago

bootstrap-rst was crashing with recent docutils, issue was the handling of math_header which caused an excpetion in docutils/writers/_html_base.py:

                    ", line 167, in interpolation_dict
                        subs[attr] = ''.join(getattr(self,
                    attr)).rstrip('\n')
                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                    TypeError: sequence item 2: expected str instance,
                    list found
justinmayer commented 8 months ago

Many thanks for this fix, Rob! 🥇