Let's say I have some Jinja2 template with several blocks in it:
{% block A %}Blah{% endblock %}
{% block B %}whatever{% endblock %}
{% block C %}you get the idea{% endblock %}
I want a Python function that will turn it into a dict (or JSON, or whatever), with one entry for each block. So the output would be something like this:
{'A': 'Blah', 'B': 'whatever', 'C': 'you get the idea'}
Is there an established way of doing this?
I'm asking because I want to have my application update pages via AJAX rather than reloads while retaining backwards compatibility. If I can parse the blocks of my Jinja2 templates, then I can use the exact same template files to easily generate whole pages or partial pages. So, as an ancillary question... is there a better way of going about this?