I can't seem to find a way to break the following lines of code out to multiple lines in compliance with the 79 character limit without breaking my project.
These are taken out of context, but I'm using them within an HTML template in Python 3. I searched quite a bit to find an answer to this, but couldn't find a case where it dealt with HTML inside of a Python file rather than the Python code itself.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:500|Source+Sans+Pro" rel="stylesheet">
$('.modal').html('<iframe id="ytplayer" type="text/html" src="https://www.youtube.com/embed/' + trailer + '?autoplay=1" frameborder="0" allowfullscreen></iframe>');
Thank you!