Index: cms/converters.py |
=================================================================== |
--- a/cms/converters.py |
+++ b/cms/converters.py |
@@ -325,17 +325,20 @@ class TemplateConverter(Converter): |
self._env.globals.update(globals) |
def get_html(self, source): |
template = self._env.from_string(source) |
module = template.make_module(self._params) |
for key, value in module.__dict__.iteritems(): |
if not key.startswith("_"): |
self._params[key] = value |
- return unicode(module) |
+ |
+ result = unicode(module) |
Sebastian Noack
2015/04/20 11:47:38
Nit: I'd rather chain the function calls instead i
Wladimir Palant
2015/04/20 11:50:37
I'd rather keep it this way - the other generators
|
+ result = self.process_links(result) |
+ return result |
def translate(self, default, name, comment=None): |
# Note: We currently ignore the comment, it is only relevant when |
# generating the master translation. |
localedata = self._params["localedata"] |
return jinja2.Markup(self.localize_string(name, default, localedata, html_escapes)) |
def get_string(self, name, page): |