我想以某种方式检测mako.lookup.TemplateLookup
,以便它仅将某些预处理器应用于某些文件扩展名。
具体来说,我有一个haml.preprocessor
,我想将其应用于文件名以.haml
结尾的所有模板。
谢谢!
最佳答案
您应该能够自定义TemplateLookup以获得所需的行为。
customlookup.py
from mako.lookup import TemplateLookup
import haml
class Lookup(TemplateLookup):
def get_template(self, uri):
if uri.rsplit('.')[1] == 'haml':
# change preprocessor used for this template
default = self.template_args['preprocessor']
self.template_args['preprocessor'] = haml.preprocessor
template = super(Lookup, self).get_template(uri)
# change it back
self.template_args['preprocessor'] = default
else:
template = super(Lookup, self).get_template(uri)
return template
lookup = Lookup(['.'])
print lookup.get_template('index.haml').render()
index.haml
<%inherit file="base.html"/>
<%block name="content">
%h1 Hello
</%block>
base.html
<html>
<body>
<%block name="content"/>
</body>
</html>
关于python - 选择基于文件扩展名的Mako预处理程序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8300752/