こんな感じで良いと思う
from flask import Flask, render_template
import pprint
app = Flask(__name__)
@app.route('/')
def index():
variable = {'key1': 'value1', 'key2': 'value2'}
formatted_variable = pprint.pformat(variable)
return render_template('index.html', variable=formatted_variable)
<html>
<body>
<pre>{{ variable }}</pre>
</body>
</html>