What's the easiest way to control taking strings to html, where you can feed attributes easily like the id, classes, etc, such that in one line you can pass a string:
'just install in crontab:\n \n crontab -e\n \n * * * * * /usr/bin/python ~/path/update_files.py'
and get
<p>just install in crontab:</p><p> </p><p> crontab -e</p><p> </p><p> * * * * * /usr/bin/python ~/path/update_files.py</p>
Thank you