8 lines
283 B
Python
8 lines
283 B
Python
"""Miscellaneous helper functions and whatnot."""
|
|
from flask import current_app as app
|
|
|
|
|
|
def get_meta_str(key):
|
|
"""Provide the page's metadata for the specified key, or '' if unset."""
|
|
return " ".join(app.config['md'].Meta.get(key)) if app.config['md'].Meta.get(key) else ""
|