mirror of
https://github.com/monero-project/monero-docs.git
synced 2024-12-22 19:49:22 +00:00
10 lines
199 B
Python
10 lines
199 B
Python
|
def define_env(env):
|
||
|
"""
|
||
|
This is the hook for the variables, macros and filters.
|
||
|
"""
|
||
|
|
||
|
@env.macro
|
||
|
def multiply(arg1, arg2):
|
||
|
"Multiply 2 numbers"
|
||
|
return arg1 * arg2
|