This repository has been archived on 2024-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
Auberge_Vagabonde/utils.py
Michel Roux 28b2091182
All checks were successful
continuous-integration/drone/push Build is passing
New way of generating epubs
2022-08-18 12:59:02 +02:00

17 lines
376 B
Python

import asyncio
import functools
def executor(f):
@functools.wraps(f)
async def wrapped(*args, **kwargs):
return await asyncio.get_running_loop().run_in_executor(
None, lambda: f(*args, **kwargs)
)
return wrapped
def generate_title_html(title, content):
return f"<h1 style='text-align:center;margin:4rem'>{title}</h1>{content}"