rewriteloader
Class info¶
Classes¶
Name | Children | Inherits |
---|---|---|
RewriteLoader jinjarope.rewriteloader A loader which modifies templates based on a callable. |
🛈 DocStrings¶
RewriteLoader
¶
Bases: LoaderMixin
, BaseLoader
A loader which modifies templates based on a callable.
Can get chained like a PrefixLoader. The path passed to the callable can be used to check whether given template should be modified.
Source code in src/jinjarope/rewriteloader.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|
__init__
¶
__init__(loader: BaseLoader, rewrite_fn: Callable[[str, str], str])
Instanciate the RewriteLoader.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
loader
|
BaseLoader
|
The loader to rewrite / modify the templates from |
required |
rewrite_fn
|
Callable[[str, str], str]
|
Callable to modify templates. It gets called with two arguments (path and template text) and should return a (possibly modified) template text |
required |
Source code in src/jinjarope/rewriteloader.py
25 26 27 28 29 30 31 32 33 34 35 |
|