mirror of
https://github.com/monero-project/monero-docs.git
synced 2024-12-22 11:39:35 +00:00
9 lines
199 B
Python
9 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
|