This repository has been archived on 2025-01-08. You can view files and clone it, but cannot push or open issues or pull requests.
blog-software/text.py

2 lines
109 B
Python
Raw Normal View History

2024-05-19 10:26:52 +02:00
def replace_variable(var: str, content: str) -> str:
return content.replace('{{ ' + var + ' }}', content)